From f2b14d2e76d8a9b19d9515f00c0eac85876363f5 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Sun, 21 Jan 2018 01:46:42 -0500 Subject: Split control plane and component install in deploy_cluster --- playbooks/gcp/openshift-cluster/install.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'playbooks/gcp') 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: -- cgit v1.2.1