diff --git a/ct/hyperion.sh b/ct/hyperion.sh index 0c583fa3e..edc14410a 100644 --- a/ct/hyperion.sh +++ b/ct/hyperion.sh @@ -9,7 +9,7 @@ APP="Hyperion" var_tags="${var_tags:-ambient-lightning}" var_cpu="${var_cpu:-1}" var_ram="${var_ram:-512}" -var_disk="${var_disk:-2}" +var_disk="${var_disk:-4}" var_os="${var_os:-debian}" var_version="${var_version:-13}" var_unprivileged="${var_unprivileged:-1}" diff --git a/frontend/public/json/hyperion.json b/frontend/public/json/hyperion.json index bfe65597f..1be61d2d0 100644 --- a/frontend/public/json/hyperion.json +++ b/frontend/public/json/hyperion.json @@ -21,7 +21,7 @@ "resources": { "cpu": 1, "ram": 512, - "hdd": 2, + "hdd": 4, "os": "debian", "version": "13" } diff --git a/misc/tools.func b/misc/tools.func index 01ca6a574..4343c0bfd 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -2704,16 +2704,16 @@ EOF # Fallback to open drivers or older Intel GPUs if [[ "$needs_nonfree" == false ]]; then # Fetch latest Intel drivers from GitHub for Debian - fetch_and_deploy_gh_release "" "intel/intel-graphics-compiler" "binary" "latest" "" "intel-igc-core-2_*_amd64.deb" || { + fetch_and_deploy_gh_release "intel-igc-core" "intel/intel-graphics-compiler" "binary" "latest" "" "intel-igc-core-2_*_amd64.deb" || { msg_warn "Failed to deploy Intel IGC core 2" } - fetch_and_deploy_gh_release "" "intel/intel-graphics-compiler" "binary" "latest" "" "intel-igc-opencl-2_*_amd64.deb" || { + fetch_and_deploy_gh_release "intel-igc-opencl" "intel/intel-graphics-compiler" "binary" "latest" "" "intel-igc-opencl-2_*_amd64.deb" || { msg_warn "Failed to deploy Intel IGC OpenCL 2" } - fetch_and_deploy_gh_release "" "intel/compute-runtime" "binary" "latest" "" "libigdgmm12_*_amd64.deb" || { + fetch_and_deploy_gh_release "libigdgmm12" "intel/compute-runtime" "binary" "latest" "" "libigdgmm12_*_amd64.deb" || { msg_warn "Failed to deploy Intel GDGMM12" } - fetch_and_deploy_gh_release "" "intel/compute-runtime" "binary" "latest" "" "intel-opencl-icd_*_amd64.deb" || { + fetch_and_deploy_gh_release "intel-opencl-icd" "intel/compute-runtime" "binary" "latest" "" "intel-opencl-icd_*_amd64.deb" || { msg_warn "Failed to deploy Intel OpenCL ICD" }