]> xn--ix-yja.es Git - alex.git/commitdiff
Increase default memory to 1G
authoralex <alex@pdp7.net>
Thu, 14 Mar 2024 15:14:38 +0000 (16:14 +0100)
committeralex <alex@pdp7.net>
Thu, 14 Mar 2024 15:15:15 +0000 (16:15 +0100)
EL9 does not work very well with less

personal_infra/playbooks/roles/proxmox_create_lxc/tasks/main.yml

index 62365eb4054b19b2f8b4133229870d2c0132c52e..23a0b6192b99db5149fe8bbd7eea267e25247087 100644 (file)
@@ -13,7 +13,7 @@
       -onboot 1
       {% if not proxmox.privileged|default(false) %} -unprivileged {% endif %}
       {% if proxmox.features|default(None) %} -features {{ proxmox.features }} {% endif %}
-      {% if proxmox.memory|default(None) %} -memory {{ proxmox.memory }} {% endif %}
+      -memory {{ proxmox.memory|default(1024) }}
       {% for disk in proxmox.disks|default([]) %}
         --mp{{ disk.index }} volume={{ disk.storage }}:{{ disk.size_gb }},mp={{ disk.path }}
       {% endfor %}