summaryrefslogtreecommitdiffstats
path: root/playbooks/aws
diff options
context:
space:
mode:
authorLénaïc Huard <lhuard@amadeus.com>2016-03-08 16:48:38 +0100
committerLénaïc Huard <lhuard@amadeus.com>2016-03-08 16:48:38 +0100
commit913d7bc61fa8183ff8e77f6496f709bc58ff3a08 (patch)
tree29a3b871e89418b06d353afc843e57b1a0fa1c46 /playbooks/aws
parent440875336eb0df1c05056aeec8dc2ee0032a74d8 (diff)
downloadopenshift-913d7bc61fa8183ff8e77f6496f709bc58ff3a08.tar.gz
openshift-913d7bc61fa8183ff8e77f6496f709bc58ff3a08.tar.bz2
openshift-913d7bc61fa8183ff8e77f6496f709bc58ff3a08.tar.xz
openshift-913d7bc61fa8183ff8e77f6496f709bc58ff3a08.zip
Fix issue when there are no infra nodes
This issue was already addressed by #1355 fc2f776 but it has been accidentally reverted by 6d3e176.
Diffstat (limited to 'playbooks/aws')
-rw-r--r--playbooks/aws/openshift-cluster/cluster_hosts.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/aws/openshift-cluster/cluster_hosts.yml b/playbooks/aws/openshift-cluster/cluster_hosts.yml
index 9a3361919..119b376aa 100644
--- a/playbooks/aws/openshift-cluster/cluster_hosts.yml
+++ b/playbooks/aws/openshift-cluster/cluster_hosts.yml
@@ -16,6 +16,6 @@ g_node_hosts: "{{ g_all_hosts | intersect(groups['tag_host-type_node'] | defa
g_new_node_hosts: "{{ g_all_hosts | intersect(groups['tag_host-type_new_node'] | default([])) }}"
-g_infra_hosts: "{{ g_node_hosts | intersect(groups['tag_sub-host-type_infra']) | default([]) }}"
+g_infra_hosts: "{{ g_node_hosts | intersect(groups['tag_sub-host-type_infra'] | default([])) }}"
g_compute_hosts: "{{ g_node_hosts | intersect(groups['tag_sub-host-type_compute'] | default([])) }}"