12345678910111213141516171819202122 |
- ---
- - 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
|