diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-12-18 14:35:35 -0500 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2016-01-04 11:19:41 -0500 |
commit | da8165469a43dc3bf43b2024a76edcd04be0bb81 (patch) | |
tree | 3ba4b2f8eeb1919c0fd98041dfb541a477743844 /playbooks/byo/openshift-cluster | |
parent | 67b3fff8257072095ebdebfdfe5c429efea3a8d8 (diff) | |
download | openshift-da8165469a43dc3bf43b2024a76edcd04be0bb81.tar.gz openshift-da8165469a43dc3bf43b2024a76edcd04be0bb81.tar.bz2 openshift-da8165469a43dc3bf43b2024a76edcd04be0bb81.tar.xz openshift-da8165469a43dc3bf43b2024a76edcd04be0bb81.zip |
Fix error in byo cluster_hosts.yml
Diffstat (limited to 'playbooks/byo/openshift-cluster')
-rw-r--r-- | playbooks/byo/openshift-cluster/cluster_hosts.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/playbooks/byo/openshift-cluster/cluster_hosts.yml b/playbooks/byo/openshift-cluster/cluster_hosts.yml index 1b2b7bff0..e093b2580 100644 --- a/playbooks/byo/openshift-cluster/cluster_hosts.yml +++ b/playbooks/byo/openshift-cluster/cluster_hosts.yml @@ -3,9 +3,11 @@ g_etcd_hosts: "{{ groups.etcd | default([]) }}" g_lb_hosts: "{{ groups.lb | default([]) }}" -g_master_hosts: "{{ groups.master | default([]) }}" +g_master_hosts: "{{ groups.masters | default([]) }}" -g_node_hosts: "{{ groups.node | default([]) }}" +g_node_hosts: "{{ groups.nodes | default([]) }}" + +g_nfs_hosts: "{{ groups.nfs | default([]) }}" g_all_hosts: "{{ g_master_hosts | union(g_node_hosts) | union(g_etcd_hosts) | union(g_lb_hosts) | default([]) }}" |