blob: f61d277c62d00b4b27e2754967f8182204917605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
- name: Populate oo_masters_to_config host group
hosts: localhost
gather_facts: no
tasks:
- add_host:
name: "{{ item }}"
groups: oo_masters_to_config
with_items: groups['masters']
- include: ../../common/openshift-master/config.yml
vars:
openshift_cluster_id: "{{ cluster_id | default('default') }}"
openshift_debug_level: 4
openshift_deployment_type: "{{ deployment_type }}"
|