summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-nfs/service.yml
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2015-11-18 14:34:47 -0500
committerAndrew Butcher <abutcher@redhat.com>2015-12-15 15:55:20 -0500
commit0c18c742c60e5c4acd609d682caae7f7ce8840cd (patch)
tree2ec429223eee1ce0e35b99a1a5ac328a9f07e453 /playbooks/common/openshift-nfs/service.yml
parentebc61582e7577ae09b856ff95a8aaef740057234 (diff)
downloadopenshift-0c18c742c60e5c4acd609d682caae7f7ce8840cd.tar.gz
openshift-0c18c742c60e5c4acd609d682caae7f7ce8840cd.tar.bz2
openshift-0c18c742c60e5c4acd609d682caae7f7ce8840cd.tar.xz
openshift-0c18c742c60e5c4acd609d682caae7f7ce8840cd.zip
Create nfs host group with registry volume attachment.
Diffstat (limited to 'playbooks/common/openshift-nfs/service.yml')
-rw-r--r--playbooks/common/openshift-nfs/service.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/playbooks/common/openshift-nfs/service.yml b/playbooks/common/openshift-nfs/service.yml
new file mode 100644
index 000000000..20c8ca248
--- /dev/null
+++ b/playbooks/common/openshift-nfs/service.yml
@@ -0,0 +1,18 @@
+---
+- name: Populate g_service_nfs 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_nfs
+ add_host: name={{ item }} groups=g_service_nfs
+ with_items: oo_host_group_exp | default([])
+
+- name: Change state on nfs instance(s)
+ hosts: g_service_nfs
+ connection: ssh
+ gather_facts: no
+ tasks:
+ - service: name=nfs-server state="{{ new_cluster_state }}"