diff options
author | Clayton Coleman <ccoleman@redhat.com> | 2018-01-21 01:46:42 -0500 |
---|---|---|
committer | Clayton Coleman <ccoleman@redhat.com> | 2018-01-23 13:01:12 -0500 |
commit | f2b14d2e76d8a9b19d9515f00c0eac85876363f5 (patch) | |
tree | 63c538ab8e4a7cc6254a890bc80f3a4a263a08d6 /playbooks/gcp | |
parent | 38e19f8e479e116047905afdfb2beac8b9555f66 (diff) | |
download | openshift-f2b14d2e76d8a9b19d9515f00c0eac85876363f5.tar.gz openshift-f2b14d2e76d8a9b19d9515f00c0eac85876363f5.tar.bz2 openshift-f2b14d2e76d8a9b19d9515f00c0eac85876363f5.tar.xz openshift-f2b14d2e76d8a9b19d9515f00c0eac85876363f5.zip |
Split control plane and component install in deploy_cluster
Diffstat (limited to 'playbooks/gcp')
-rw-r--r-- | playbooks/gcp/openshift-cluster/install.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/playbooks/gcp/openshift-cluster/install.yml b/playbooks/gcp/openshift-cluster/install.yml index 01eefb023..fb35b4348 100644 --- a/playbooks/gcp/openshift-cluster/install.yml +++ b/playbooks/gcp/openshift-cluster/install.yml @@ -8,12 +8,21 @@ name: openshift_gcp tasks_from: setup_scale_group_facts.yml -- name: run the cluster deploy - import_playbook: ../../deploy_cluster.yml +- name: run the init + import_playbook: ../../init/main.yml + +- name: configure the control plane + import_playbook: ../../common/private/control_plane.yml + +- name: ensure the masters are configured as nodes + import_playbook: ../../openshift-node/private/config.yml - name: run the GCP specific post steps import_playbook: install_gcp.yml +- name: install components + import_playbook: ../../common/private/components.yml + - hosts: primary_master gather_facts: no tasks: |