diff options
Diffstat (limited to 'inventory/host_vars/ch-jump.yml')
-rw-r--r-- | inventory/host_vars/ch-jump.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/inventory/host_vars/ch-jump.yml b/inventory/host_vars/ch-jump.yml index eacd13b0..8a7d1376 100644 --- a/inventory/host_vars/ch-jump.yml +++ b/inventory/host_vars/ch-jump.yml @@ -1,16 +1,18 @@ --- -vm_host: ch-gnocchi +_vm_host_: ch-gnocchi install: - host: "{{ vm_host }}" - mem: 1024 - numcpu: 2 + vm: + host: "{{ _vm_host_ }}" + mem: 1024 + numcpu: 2 + autostart: True disks: primary: /dev/sda scsi: sda: type: lvm - vg: "{{ hostvars[vm_host].host_name }}" + vg: "{{ hostvars[_vm_host_].host_name }}" lv: "{{ inventory_hostname }}" size: 10g interfaces: @@ -18,7 +20,6 @@ install: name: svc0 - bridge: br-mgmt name: mgmt0 - autostart: True network: nameservers: "{{ network_zones.svc.dns }}" |