summaryrefslogtreecommitdiffstats
path: root/playbooks/libvirt/openshift-cluster/cluster_hosts.yml
diff options
context:
space:
mode:
authorThomas Wiest <twiest@users.noreply.github.com>2016-01-21 12:33:17 -0500
committerThomas Wiest <twiest@users.noreply.github.com>2016-01-21 12:33:17 -0500
commit9d4cc988d0fbb679f66995acb2b82ca74fe412da (patch)
tree1732dbb203a85c2ea495af595ea94474df42453a /playbooks/libvirt/openshift-cluster/cluster_hosts.yml
parent9410cdff9342fae80a3149c530b819e473996cce (diff)
parentbef3647b3b6db7e692b3306d83038b4eb8b71de2 (diff)
downloadopenshift-9d4cc988d0fbb679f66995acb2b82ca74fe412da.tar.gz
openshift-9d4cc988d0fbb679f66995acb2b82ca74fe412da.tar.bz2
openshift-9d4cc988d0fbb679f66995acb2b82ca74fe412da.tar.xz
openshift-9d4cc988d0fbb679f66995acb2b82ca74fe412da.zip
Merge pull request #1256 from openshift/master
sync master -> prod branch
Diffstat (limited to 'playbooks/libvirt/openshift-cluster/cluster_hosts.yml')
-rw-r--r--playbooks/libvirt/openshift-cluster/cluster_hosts.yml27
1 files changed, 11 insertions, 16 deletions
diff --git a/playbooks/libvirt/openshift-cluster/cluster_hosts.yml b/playbooks/libvirt/openshift-cluster/cluster_hosts.yml
index 198a3e4e2..15690e3bf 100644
--- a/playbooks/libvirt/openshift-cluster/cluster_hosts.yml
+++ b/playbooks/libvirt/openshift-cluster/cluster_hosts.yml
@@ -1,22 +1,17 @@
---
-g_etcd_hosts: "{{ (groups['tag_host-type-etcd']|default([]))
- | intersect((groups['tag_clusterid-' ~ cluster_id]|default([])))
- | intersect((groups['tag_environment-' ~ cluster_env]|default([]))) }}"
+g_all_hosts: "{{ groups['tag_clusterid-' ~ cluster_id] | default([])
+ | intersect(groups['tag_environment-' ~ cluster_env] | default([])) }}"
-g_lb_hosts: "{{ (groups['tag_host-type-lb']|default([]))
- | intersect((groups['tag_clusterid-' ~ cluster_id]|default([])))
- | intersect((groups['tag_environment-' ~ cluster_env]|default([]))) }}"
+g_etcd_hosts: "{{ g_all_hosts | intersect(groups['tag_host-type-etcd'] | default([])) }}"
-g_master_hosts: "{{ (groups['tag_host-type-master']|default([]))
- | intersect((groups['tag_clusterid-' ~ cluster_id]|default([])))
- | intersect((groups['tag_environment-' ~ cluster_env]|default([]))) }}"
+g_lb_hosts: "{{ g_all_hosts | intersect(groups['tag_host-type-lb'] | default([])) }}"
-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: "{{ g_all_hosts | intersect(groups['tag_host-type-nfs'] | default([])) }}"
-g_nfs_hosts: "{{ (groups['tag_host-type-node']|default([]))
- | intersect((groups['tag_environment-' ~ cluster_id]|default([]))) }}"
+g_master_hosts: "{{ g_all_hosts | intersect(groups['tag_host-type-master'] | default([])) }}"
-g_all_hosts: "{{ g_master_hosts | union(g_node_hosts) | union(g_etcd_hosts)
- | union(g_lb_hosts) | default([]) }}"
+g_node_hosts: "{{ g_all_hosts | intersect(groups['tag_host-type-node'] | 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([]) }}"