blob: 938e83f5e88c6a303609f6e853c07e0395dece7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---
- name: Setup the master node group
hosts: localhost
tasks:
- import_role:
name: openshift_aws
tasks_from: setup_master_group.yml
- name: set the master facts for hostname to elb
hosts: masters
gather_facts: no
remote_user: root
tasks:
- import_role:
name: openshift_aws
tasks_from: master_facts.yml
- name: run the init
import_playbook: ../../init/main.yml
- name: configure the control plane
import_playbook: ../../common/private/control_plane.yml
- name: ensure the masters are configured as nodes
import_playbook: ../../openshift-node/private/config.yml
|