Filter computes with nova_host defined
When adding hosts to aggregates/availability zones, use the nodes that have nova_host defined. This would exclude blacklisted nodes. Change-Id: I85599dbb985a9d45e2e7587170c39aa2940ca939
This commit is contained in:
@@ -82,7 +82,7 @@ outputs:
|
|||||||
os_nova_host_aggregate:
|
os_nova_host_aggregate:
|
||||||
name: {get_attr: [NovaComputeAvailabilityZoneValue, value]}
|
name: {get_attr: [NovaComputeAvailabilityZoneValue, value]}
|
||||||
availability_zone: {get_attr: [NovaComputeAvailabilityZoneValue, value]}
|
availability_zone: {get_attr: [NovaComputeAvailabilityZoneValue, value]}
|
||||||
hosts: "{{ groups['nova_compute'] | default([]) | map('extract', hostvars, 'nova_host') | list }}"
|
hosts: "{{ groups['nova_compute'] | default([]) | map('extract', hostvars, 'nova_host') | select('defined') | list }}"
|
||||||
auth:
|
auth:
|
||||||
username: admin
|
username: admin
|
||||||
password: {get_param: AdminPassword}
|
password: {get_param: AdminPassword}
|
||||||
|
|||||||
Reference in New Issue
Block a user