provision_install.yml 755 B

12345678910111213141516171819
  1. ---
  2. # Once an AMI is built then this script is used for
  3. # the one stop shop to provision and install a cluster
  4. # this playbook is run with the following parameters:
  5. # ansible-playbook -i openshift-ansible-inventory provision_install.yml
  6. - name: Include the provision.yml playbook to create cluster
  7. import_playbook: provision.yml
  8. - name: Include the install.yml playbook to install cluster on masters
  9. import_playbook: install.yml
  10. - name: provision the infra/compute playbook to install node resources
  11. import_playbook: provision_nodes.yml
  12. - name: Include the accept.yml playbook to accept nodes into the cluster
  13. import_playbook: accept.yml
  14. - name: Include the hosted.yml playbook to finish the hosted configuration
  15. import_playbook: hosted.yml