summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-master/scaleup.yml
diff options
context:
space:
mode:
authorRussell Teague <rteague@redhat.com>2017-08-31 14:42:01 -0400
committerRussell Teague <rteague@redhat.com>2017-08-31 15:38:41 -0400
commitecb0cbe04149fdcbf3992ccfc7578c6605462bc3 (patch)
tree4583608ae6c33d57d1bfd2e71ab54be8ada50ecc /playbooks/common/openshift-master/scaleup.yml
parenta00df5740d98b1ba8aaef07d3f5ad16a12be3219 (diff)
downloadopenshift-ecb0cbe04149fdcbf3992ccfc7578c6605462bc3.tar.gz
openshift-ecb0cbe04149fdcbf3992ccfc7578c6605462bc3.tar.bz2
openshift-ecb0cbe04149fdcbf3992ccfc7578c6605462bc3.tar.xz
openshift-ecb0cbe04149fdcbf3992ccfc7578c6605462bc3.zip
Break out node config into stand-alone playbook
Added byo/openshift-node/config.yml as a new entry point for performing node installation. This playbook must be run after masters have already been deployed. Excluder disable/enable for both nodes and masters has been moved their respective config.yml. This created a common pattern that could be used for both installation and scaleup playbooks.
Diffstat (limited to 'playbooks/common/openshift-master/scaleup.yml')
-rw-r--r--playbooks/common/openshift-master/scaleup.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/playbooks/common/openshift-master/scaleup.yml b/playbooks/common/openshift-master/scaleup.yml
index 6ad4cde65..17f9ef4bc 100644
--- a/playbooks/common/openshift-master/scaleup.yml
+++ b/playbooks/common/openshift-master/scaleup.yml
@@ -43,28 +43,8 @@
delay: 1
changed_when: false
-- name: Disable excluders
- hosts: oo_masters_to_config
- tags:
- - always
- gather_facts: no
- roles:
- - role: openshift_excluder
- r_openshift_excluder_action: disable
- r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"
-
- include: ../openshift-master/config.yml
- include: ../openshift-loadbalancer/config.yml
- include: ../openshift-node/config.yml
-
-- name: Re-enable excluder if it was previously enabled
- hosts: oo_masters_to_config
- tags:
- - always
- gather_facts: no
- roles:
- - role: openshift_excluder
- r_openshift_excluder_action: enable
- r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"