summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-node/config.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/config.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/config.yml')
-rw-r--r--playbooks/common/openshift-node/config.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml
index 04c811c22..c13417714 100644
--- a/playbooks/common/openshift-node/config.yml
+++ b/playbooks/common/openshift-node/config.yml
@@ -1,4 +1,12 @@
---
+- name: Disable excluders
+ hosts: oo_nodes_to_config
+ gather_facts: no
+ roles:
+ - role: openshift_excluder
+ r_openshift_excluder_action: disable
+ r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"
+
- name: Evaluate node groups
hosts: localhost
become: no
@@ -78,3 +86,11 @@
- name: Create group for deployment type
group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }}
changed_when: False
+
+- name: Re-enable excluder if it was previously enabled
+ hosts: oo_nodes_to_config
+ gather_facts: no
+ roles:
+ - role: openshift_excluder
+ r_openshift_excluder_action: enable
+ r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"