install.yml 612 B

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