provision_install.yml 595 B

12345678910111213141516
  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. include: provision.yml
  8. - name: Include the install.yml playbook to install cluster
  9. include: install.yml
  10. - name: Include the install.yml playbook to install cluster
  11. include: provision_nodes.yml
  12. - name: Include the accept.yml playbook to accept nodes into the cluster
  13. include: accept.yml