install.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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: run the init
  17. include: ../../init/main.yml
  18. - name: perform the installer openshift-checks
  19. include: ../../openshift-checks/private/install.yml
  20. - name: etcd install
  21. include: ../../openshift-etcd/private/config.yml
  22. - name: include nfs
  23. include: ../../openshift-nfs/private/config.yml
  24. when: groups.oo_nfs_to_config | default([]) | count > 0
  25. - name: include loadbalancer
  26. include: ../../common/openshift-loadbalancer/config.yml
  27. when: groups.oo_lb_to_config | default([]) | count > 0
  28. - name: include openshift-master config
  29. include: ../../common/openshift-master/config.yml
  30. - name: include master additional config
  31. include: ../../common/openshift-master/additional_config.yml
  32. - name: include master additional config
  33. include: ../../openshift-node/private/config.yml
  34. - name: include openshift-glusterfs
  35. include: ../../common/openshift-glusterfs/config.yml
  36. when: groups.oo_glusterfs_to_config | default([]) | count > 0