install.yml 598 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: Setup the master node group
  3. hosts: localhost
  4. tasks:
  5. - include_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. - include_role:
  14. name: openshift_aws
  15. tasks_from: master_facts.yml
  16. - name: normalize groups
  17. include: ../../byo/openshift-cluster/initialize_groups.yml
  18. - name: run the std_include
  19. include: ../../common/openshift-cluster/std_include.yml
  20. - name: run the config
  21. include: ../../common/openshift-cluster/config.yml