Reduce Zerobyte default CPU and RAM
Some checks failed
Update GitHub Versions (New) / update-github-versions (push) Has been cancelled
Crawl Versions from newreleases.io / crawl-versions (push) Has been cancelled
Crawl Versions from github / crawl-versions (push) Has been cancelled
Update Versions from GitHub / update-versions (push) Has been cancelled

Lower default resources for the Zerobyte container: reduce CPU from 4 to 2 and RAM to 2048 MB. Update ct/zerobyte.sh (var_cpu and var_ram) and frontend/public/json/zerobyte.json (UI resources) so the script and frontend metadata remain consistent.
This commit is contained in:
CanbiZ (MickLesk) 2026-02-18 12:43:09 +01:00
parent 110e6fa2e9
commit 54172c0a35
2 changed files with 3 additions and 3 deletions

View File

@ -7,8 +7,8 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
APP="Zerobyte" APP="Zerobyte"
var_tags="${var_tags:-backup;encryption;restic}" var_tags="${var_tags:-backup;encryption;restic}"
var_cpu="${var_cpu:-4}" var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-6192}" var_ram="${var_ram:-2048}"
var_disk="${var_disk:-10}" var_disk="${var_disk:-10}"
var_os="${var_os:-debian}" var_os="${var_os:-debian}"
var_version="${var_version:-13}" var_version="${var_version:-13}"

View File

@ -20,7 +20,7 @@
"script": "ct/zerobyte.sh", "script": "ct/zerobyte.sh",
"resources": { "resources": {
"cpu": 2, "cpu": 2,
"ram": 4096, "ram": 2048,
"hdd": 10, "hdd": 10,
"os": "Debian", "os": "Debian",
"version": "13" "version": "13"