summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-node/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-node/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-node/scaleup.yml')
-rw-r--r--playbooks/common/openshift-node/scaleup.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/playbooks/common/openshift-node/scaleup.yml b/playbooks/common/openshift-node/scaleup.yml
deleted file mode 100644
index b1bbbb14c..000000000
--- a/playbooks/common/openshift-node/scaleup.yml
+++ /dev/null
@@ -1,22 +0,0 @@
----
-- name: Disable excluders
- hosts: oo_nodes_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-node/config.yml
-
-- name: Re-enable excluder if it was previously enabled
- hosts: oo_nodes_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 }}"