nfs.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. # Tasks to statically provision NFS volumes
  3. # Include if not using dynamic volume provisioning
  4. - name: Set openshift_cfme_nfs_server fact
  5. when: openshift_cfme_nfs_server is not defined
  6. set_fact:
  7. # Hostname/IP of the NFS server. Currently defaults to first master
  8. openshift_cfme_nfs_server: "{{ oo_nfs_to_config.0 }}"
  9. - name: Ensure the /exports/ directory exists
  10. file:
  11. path: /exports/
  12. state: directory
  13. mode: 0755
  14. owner: root
  15. group: root
  16. - name: Ensure the miq-pv0X export directories exist
  17. file:
  18. path: "/exports/{{ item }}"
  19. state: directory
  20. mode: 0775
  21. owner: root
  22. group: root
  23. with_items: "{{ openshift_cfme_pv_exports }}"
  24. - name: Ensure the NFS exports for CFME PVs exist
  25. copy:
  26. src: openshift_cfme.exports
  27. dest: /etc/exports.d/openshift_cfme.exports
  28. register: nfs_exports_updated
  29. - name: Ensure the NFS export table is refreshed if exports were added
  30. command: exportfs -ar
  31. when:
  32. - nfs_exports_updated.changed
  33. ######################################################################
  34. # Create the required CFME PVs. Check out these online docs if you
  35. # need a refresher on includes looping with items:
  36. # * http://docs.ansible.com/ansible/playbooks_loops.html#loops-and-includes-in-2-0
  37. # * http://stackoverflow.com/a/35128533
  38. #
  39. # TODO: Handle the case where a PV template is updated in
  40. # openshift-ansible and the change needs to be landed on the managed
  41. # cluster.
  42. - include: create_pvs.yml
  43. with_items: "{{ openshift_cfme_pv_data }}"