summaryrefslogtreecommitdiff
path: root/roles/cloud/install/templates/hetzner_installimage.conf.j2
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2020-07-04 17:39:00 +0200
committerChristian Pointner <equinox@spreadspace.org>2020-07-04 17:39:00 +0200
commita1f5550dd6de108f68ea3d6b2a42fe47b49561a4 (patch)
treec96c0b98bf84f30c192708f765e1cb57b78d46ab /roles/cloud/install/templates/hetzner_installimage.conf.j2
parentremove: ch k8s cluster vms, and hroot-test, add hcloud-test (diff)
cloud install: support custom partition layout
Diffstat (limited to 'roles/cloud/install/templates/hetzner_installimage.conf.j2')
-rw-r--r--roles/cloud/install/templates/hetzner_installimage.conf.j214
1 files changed, 8 insertions, 6 deletions
diff --git a/roles/cloud/install/templates/hetzner_installimage.conf.j2 b/roles/cloud/install/templates/hetzner_installimage.conf.j2
index ed22f286..e3cd4c4e 100644
--- a/roles/cloud/install/templates/hetzner_installimage.conf.j2
+++ b/roles/cloud/install/templates/hetzner_installimage.conf.j2
@@ -13,12 +13,14 @@ DRIVE1 {{ install_cooked.disks.primary }}
DRIVE1 /dev/sda
{% endif %}
BOOTLOADER grub
-PART /boot ext4 512M
-PART lvm {{ host_name }} {{ install_cooked.disks.root_lvm_size }}
-{% if install_cooked.disks.root_lvm_size != "all" %}
+PART /boot ext4 {{ hetzner_boot_size }}
+{% set system_lvm_size = install_cooked.system_lvm.size | default(hetzner_system_lvm_size_default) %}
+PART lvm {{ host_name }} {{ system_lvm_size }}
+{% if system_lvm_size != "all" %}
PART /dummy ext4 all
{% endif %}
-LV {{ host_name }} root / ext4 2560M
-LV {{ host_name }} var /var ext4 1280M
-LV {{ host_name }} var+log /var/log ext4 768M
+{% set system_lvm_volumes = install_cooked.system_lvm.volumes | default(hetzner_system_lvm_volumes_default) %}
+{% for volume in system_lvm_volumes %}
+LV {{ host_name }} {{ volume.name }} {{ volume.mountpoint }} {{ volume.filesystem }} {{ volume.size }}
+{% endfor %}
IMAGE {{ latest_image.stdout }}