12345678910111213 |
- ---
- - name: Ensure all cloud resources necessary for the cluster, including instances, have been started
- hosts: localhost
- connection: local
- gather_facts: no
- tasks:
- - name: provision a GCP cluster in the specified project
- import_role:
- name: openshift_gcp
- - name: run the cluster deploy
- import_playbook: ../deploy_cluster.yml
|