Browse Source

Fix error in byo cluster_hosts.yml

Jason DeTiberus 9 years ago
parent
commit
da8165469a

+ 1 - 1
playbooks/aws/openshift-cluster/cluster_hosts.yml

@@ -16,7 +16,7 @@ g_node_hosts:   "{{ (groups['tag_host-type_node']|default([]))
                      | intersect((groups['tag_environment_' ~ cluster_env]|default([]))) }}"
 
 g_nfs_hosts:    "{{ (groups['tag_host-type_nfs']|default([]))
-                   | intersect((groups['tag_env_' ~ cluster_id]|default([]))) }}"
+                   | intersect((groups['tag_environment_' ~ cluster_id]|default([]))) }}"
 
 g_all_hosts:    "{{ g_master_hosts | union(g_node_hosts) | union(g_etcd_hosts)
                     | union(g_lb_hosts) | default([]) }}"

+ 4 - 2
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([]) }}"

+ 3 - 0
playbooks/gce/openshift-cluster/cluster_hosts.yml

@@ -15,5 +15,8 @@ g_node_hosts:   "{{ (groups['tag_host-type-node']|default([]))
                      | intersect((groups['tag_clusterid-' ~ cluster_id]|default([])))
                      | intersect((groups['tag_environment-' ~ cluster_env]|default([]))) }}"
 
+g_nfs_hosts:    "{{ (groups['tag_host-type-nfs']|default([]))
+                   | intersect((groups['tag_environment-' ~ cluster_id]|default([]))) }}"
+
 g_all_hosts:    "{{ g_master_hosts | union(g_node_hosts) | union(g_etcd_hosts)
                     | union(g_lb_hosts) | default([]) }}"

+ 1 - 1
playbooks/libvirt/openshift-cluster/cluster_hosts.yml

@@ -16,7 +16,7 @@ g_node_hosts:   "{{ (groups['tag_host-type-node']|default([]))
                    | intersect((groups['tag_environment-' ~ cluster_env]|default([]))) }}"
 
 g_nfs_hosts:    "{{ (groups['tag_host-type-node']|default([]))
-                   | intersect((groups['tag_env-' ~ cluster_id]|default([]))) }}"
+                   | intersect((groups['tag_environment-' ~ cluster_id]|default([]))) }}"
 
 g_all_hosts:    "{{ g_master_hosts | union(g_node_hosts) | union(g_etcd_hosts)
                     | union(g_lb_hosts) | default([]) }}"

+ 1 - 1
playbooks/openstack/openshift-cluster/cluster_hosts.yml

@@ -16,7 +16,7 @@ g_node_hosts:   "{{ (groups['tag_host-type_node']|default([]))
                    | intersect((groups['tag_environment_' ~ cluster_env]|default([]))) }}"
 
 g_nfs_hosts:  "{{ (groups['tag_host-type_nfs']|default([]))
-                   | intersect((groups['tag_env_' ~ cluster_id]|default([]))) }}"
+                   | intersect((groups['tag_environment_' ~ cluster_id]|default([]))) }}"
 
 g_all_hosts:    "{{ g_master_hosts | union(g_node_hosts) | union(g_etcd_hosts)
                     | union(g_lb_hosts) | default([]) }}"