blob: 092eb9978e6b5af2b70d734b1feb2a55d11c83c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- name: Run the openshift-master config playbook
include: openshift-master/config.yml
when: groups.masters is defined and groups.masters
- name: Run the openshift-etcd playbook
include: openshift-etcd/config.yml
when: groups.etcd is defined and groups.etcd
- name: Run the openshift-node config playbook
include: openshift-node/config.yml
when: groups.nodes is defined and groups.nodes and groups.masters is defined and groups.masters
|