diff options
author | Christian Pointner <equinox@spreadspace.org> | 2021-06-20 01:39:13 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2021-06-20 01:39:13 +0200 |
commit | 11030ba06c803a1466236e7fd8582754e29fc176 (patch) | |
tree | 7753537b57968459ac77941efe7a54cfdbb6e063 /inventory/host_vars/sk-2019vm.yml | |
parent | fixup! add workaround for check-mode of zfs module (diff) |
root part has been resized for some hosts
Diffstat (limited to 'inventory/host_vars/sk-2019vm.yml')
-rw-r--r-- | inventory/host_vars/sk-2019vm.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/inventory/host_vars/sk-2019vm.yml b/inventory/host_vars/sk-2019vm.yml index d5041593..7c551ac2 100644 --- a/inventory/host_vars/sk-2019vm.yml +++ b/inventory/host_vars/sk-2019vm.yml @@ -12,6 +12,23 @@ install: - /dev/nvme1n1 system_lvm: size: 10G + volumes: + - name: root + size: 3072M + filesystem: ext4 + mountpoint: / + - name: var + size: 1280M + filesystem: ext4 + mountpoint: /var + - name: var+log + size: 768M + filesystem: ext4 + mountpoint: /var/log + mount_options: + - noatime + - nodev + - noexec network: nameservers: "{{ vm_host.network.dns }}" |