install.yml 559 B

123456789101112131415161718192021222324
  1. ---
  2. - name: Setup master instances
  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. - import_playbook: ../../openshift-checks/private/install.yml
  19. - name: configure the control plane
  20. import_playbook: ../../common/private/control_plane.yml