provision.yml 527 B

12345678910111213141516171819
  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: normalize groups
  11. include: ../../byo/openshift-cluster/initialize_groups.yml
  12. - name: run the std_include
  13. include: ../../common/openshift-cluster/std_include.yml
  14. - name: run the config
  15. include: ../../common/openshift-cluster/config.yml