blob: a3d1d46a6c71f0867f073a1e876cc8df526db16a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
---
- 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
    include_role:
      name: openshift_gcp
- name: normalize groups
  include: ../../byo/openshift-cluster/initialize_groups.yml
- name: run the std_include
  include: ../../common/openshift-cluster/std_include.yml
- name: run the config
  include: ../../common/openshift-cluster/config.yml
  |