Worker node deployment
Change-Id: I1a1c06ee9fa16e2c56374e98f8aaea5da80898cd
This commit is contained in:
@@ -170,7 +170,7 @@
|
||||
name: libvirt-domain
|
||||
vars:
|
||||
libvirt_domain:
|
||||
boot_mode: UEFI
|
||||
boot_mode: "{{ chosen_flavor.worker_vm_cfg[vm_index|int - 1].boot_mode | default('UEFI') }}"
|
||||
enable_vnc: true
|
||||
console_log_enabled: true
|
||||
state: shutdown
|
||||
@@ -188,9 +188,9 @@
|
||||
pool: "{{ airship_gate_names.pool }}"
|
||||
interfaces:
|
||||
- network: "{{ airship_gate_names.nat_network }}"
|
||||
mac: ""
|
||||
mac: "{{ chosen_flavor.worker_vm_cfg[vm_index|int - 1].nat_mac | default('') }}"
|
||||
- network: "{{ airship_gate_names.provision_network }}"
|
||||
mac: ""
|
||||
mac: "{{ chosen_flavor.worker_vm_cfg[vm_index|int - 1].provision_mac | default('') }}"
|
||||
loop_control:
|
||||
loop_var: vm_index
|
||||
with_sequence: "start=1 end={{ chosen_flavor.worker_vms_count }}"
|
||||
|
||||
@@ -38,5 +38,5 @@ airship_gate_names:
|
||||
target_volume_prefix: "vol_target"
|
||||
ephemeral_volume: "vol_ephemeral"
|
||||
pool: airship
|
||||
worker_vm_prefix: "air-target"
|
||||
worker_vm_prefix: "air-worker"
|
||||
worker_volume_prefix: "vol_worker"
|
||||
|
||||
Reference in New Issue
Block a user