diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-08 11:50:15 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-08 11:50:15 -0500 |
commit | 13d249446afc9708d77c12dbe3fb6f0b4837b6aa (patch) | |
tree | 29a3b871e89418b06d353afc843e57b1a0fa1c46 /playbooks/aws | |
parent | 440875336eb0df1c05056aeec8dc2ee0032a74d8 (diff) | |
parent | 913d7bc61fa8183ff8e77f6496f709bc58ff3a08 (diff) | |
download | openshift-13d249446afc9708d77c12dbe3fb6f0b4837b6aa.tar.gz openshift-13d249446afc9708d77c12dbe3fb6f0b4837b6aa.tar.bz2 openshift-13d249446afc9708d77c12dbe3fb6f0b4837b6aa.tar.xz openshift-13d249446afc9708d77c12dbe3fb6f0b4837b6aa.zip |
Merge pull request #1565 from lhuard1A/fix_when_no_infra
Fix issue when there are no infra nodes
Diffstat (limited to 'playbooks/aws')
-rw-r--r-- | playbooks/aws/openshift-cluster/cluster_hosts.yml | 2 |
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([])) }}" |