diff options
author | Lénaïc Huard <lhuard@amadeus.com> | 2016-03-08 16:48:38 +0100 |
---|---|---|
committer | Lénaïc Huard <lhuard@amadeus.com> | 2016-03-08 16:48:38 +0100 |
commit | 913d7bc61fa8183ff8e77f6496f709bc58ff3a08 (patch) | |
tree | 29a3b871e89418b06d353afc843e57b1a0fa1c46 /playbooks/gce/openshift-cluster | |
parent | 440875336eb0df1c05056aeec8dc2ee0032a74d8 (diff) | |
download | openshift-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/gce/openshift-cluster')
-rw-r--r-- | playbooks/gce/openshift-cluster/cluster_hosts.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/gce/openshift-cluster/cluster_hosts.yml b/playbooks/gce/openshift-cluster/cluster_hosts.yml index b989e15fa..a7baea915 100644 --- a/playbooks/gce/openshift-cluster/cluster_hosts.yml +++ b/playbooks/gce/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([])) }}" |