provision.yml 349 B

12345678910111213
  1. ---
  2. - name: Ensure all cloud resources necessary for the cluster, including instances, have been started
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. tasks:
  7. - name: provision a GCP cluster in the specified project
  8. include_role:
  9. name: openshift_gcp
  10. - name: run the cluster deploy
  11. import_playbook: ../deploy_cluster.yml