style 💎: Update storage settings in proxmox template

Updated the `lxc_storage` variable from `hdd8t` to `local-lvm`, and added additional storage options (`--swap` and `--rootfs-size`) for more efficient resource allocation.
This commit is contained in:
2025-11-08 16:59:29 +01:00
parent e42875a45d
commit 7788d25612

View File

@@ -10,12 +10,13 @@
vars:
lxc_name: "debian-builder"
lxc_id: 9900
# lxc_storage: "local-lvm"
lxc_storage: "hdd8t"
lxc_storage: "local-lvm"
# lxc_storage: "hdd8t"
lxc_template: "local:vztmpl/debian-13-standard_13.1-1_amd64.tar.zst"
lxc_ostype: "debian"
lxc_cores: 2
lxc_memory: 2048
lxc_cores: 4
lxc_memory: 4096
lxc_swap: 0
lxc_net: "name=eth0,bridge=vmbr0,ip=dhcp"
lxc_rootfs_size: "8G"
lxc_password: "password"
@@ -50,6 +51,8 @@
--ssh-public-keys '{{ ssh_keys_file }}'
--cores {{ lxc_cores }}
--memory {{ lxc_memory }}
--swap {{ lxc_swap }}
--rootfs-size {{ lxc_rootfs_size }}
--ostype {{ lxc_ostype }}
--net0 {{ lxc_net }}
--storage {{ lxc_storage }}