provision.yml 406 B

12345678910111213141516
  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 init
  11. include: ../../init/main.yml
  12. - name: run the config
  13. include: ../../common/openshift-cluster/config.yml