summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cfme/tasks/nfs.yml
diff options
context:
space:
mode:
authorScott Weiss <sdw35@cornell.edu>2017-08-03 12:21:07 -0400
committerScott Weiss <sdw35@cornell.edu>2017-08-03 15:18:56 -0400
commit596abe006140c2a1bd125aca11754ed3b7ba548d (patch)
tree37ca88dbd95d98b01fcd8d743eb4d9d9eae1b2a9 /roles/openshift_cfme/tasks/nfs.yml
parent05a9c91735cc95457411dbb19951341e5418df18 (diff)
downloadopenshift-596abe006140c2a1bd125aca11754ed3b7ba548d.tar.gz
openshift-596abe006140c2a1bd125aca11754ed3b7ba548d.tar.bz2
openshift-596abe006140c2a1bd125aca11754ed3b7ba548d.tar.xz
openshift-596abe006140c2a1bd125aca11754ed3b7ba548d.zip
nfs only run if cloud_provider not defined
Diffstat (limited to 'roles/openshift_cfme/tasks/nfs.yml')
-rw-r--r--roles/openshift_cfme/tasks/nfs.yml44
1 files changed, 44 insertions, 0 deletions
diff --git a/roles/openshift_cfme/tasks/nfs.yml b/roles/openshift_cfme/tasks/nfs.yml
new file mode 100644
index 000000000..8db45492e
--- /dev/null
+++ b/roles/openshift_cfme/tasks/nfs.yml
@@ -0,0 +1,44 @@
+---
+# Tasks to statically provision NFS volumes
+# Include if not using dynamic volume provisioning
+- name: Ensure the /exports/ directory exists
+ file:
+ path: /exports/
+ state: directory
+ mode: 0755
+ owner: root
+ group: root
+
+- name: Ensure the miq-pv0X export directories exist
+ file:
+ path: "/exports/{{ item }}"
+ state: directory
+ mode: 0775
+ owner: root
+ group: root
+ with_items: "{{ openshift_cfme_pv_exports }}"
+
+- name: Ensure the NFS exports for CFME PVs exist
+ copy:
+ src: openshift_cfme.exports
+ dest: /etc/exports.d/openshift_cfme.exports
+ register: nfs_exports_updated
+
+- name: Ensure the NFS export table is refreshed if exports were added
+ command: exportfs -ar
+ when:
+ - nfs_exports_updated.changed
+
+
+######################################################################
+# Create the required CFME PVs. Check out these online docs if you
+# need a refresher on includes looping with items:
+# * http://docs.ansible.com/ansible/playbooks_loops.html#loops-and-includes-in-2-0
+# * http://stackoverflow.com/a/35128533
+#
+# TODO: Handle the case where a PV template is updated in
+# openshift-ansible and the change needs to be landed on the managed
+# cluster.
+
+- include: create_pvs.yml
+ with_items: "{{ openshift_cfme_pv_data }}"