summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-node/service.yml
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2015-06-03 09:29:46 -0700
committerJhon Honce <jhonce@redhat.com>2015-06-03 11:41:48 -0700
commit67afaa13ee375def01960004195254b46cddd0db (patch)
tree47540e58a58872806a461d48fa87d1cd48fa2a47 /playbooks/common/openshift-node/service.yml
parent433e3c77adf99cfaa5d6b8f94d2f0065f187b0fc (diff)
downloadopenshift-67afaa13ee375def01960004195254b46cddd0db.tar.gz
openshift-67afaa13ee375def01960004195254b46cddd0db.tar.bz2
openshift-67afaa13ee375def01960004195254b46cddd0db.tar.xz
openshift-67afaa13ee375def01960004195254b46cddd0db.zip
Infrastructure - Add service action to bin/cluster
* Add necessary playbooks/roles * Cleanup bin/cluster to meet new design guide lines
Diffstat (limited to 'playbooks/common/openshift-node/service.yml')
-rw-r--r--playbooks/common/openshift-node/service.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/playbooks/common/openshift-node/service.yml b/playbooks/common/openshift-node/service.yml
new file mode 100644
index 000000000..f76df089f
--- /dev/null
+++ b/playbooks/common/openshift-node/service.yml
@@ -0,0 +1,18 @@
+---
+- name: Populate g_service_nodes host group if needed
+ hosts: localhost
+ gather_facts: no
+ tasks:
+ - fail: msg="new_cluster_state is required to be injected in this playbook"
+ when: new_cluster_state is not defined
+
+ - name: Evaluate g_service_nodes
+ add_host: name={{ item }} groups=g_service_nodes
+ with_items: oo_host_group_exp | default([])
+
+- name: Change openshift-node state on node instance(s)
+ hosts: g_service_nodes
+ connection: ssh
+ gather_facts: no
+ tasks:
+ - service: name=openshift-node state="{{ new_cluster_state }}"