nfs.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. ---
  2. # Tasks to statically provision NFS volumes
  3. # Include if not using dynamic volume provisioning
  4. - name: Note Storage Type - NFS
  5. debug:
  6. msg: Setting up NFS storage, openshift_cfme_storage_class is 'nfs'
  7. - name: TODO
  8. debug:
  9. msg: TODO - replace hard-coded hostname below with oo_nfs_to_config.0
  10. - name: Set openshift_cfme_nfs_server fact
  11. when: openshift_cfme_nfs_server is not defined
  12. set_fact:
  13. # Hostname/IP of the NFS server. Currently defaults to first master
  14. openshift_cfme_nfs_server: m01.example.com
  15. # TODO: I was going to try to apply the openshift_storage_nfs role to
  16. # handle this, however, that role is not written to be used by
  17. # itself. Attempting to use it to create CFME exports would just add
  18. # more hard-coded values to the role. That said, we're doing this here
  19. # manually for now until some one comes up with a better solution, or
  20. # the role is made to accept parameters in a more functional way.
  21. #
  22. # I can't really even include the openshift_storage_nfs role in here
  23. # to do basic setup stuff because it would just result in a lot of
  24. # unwanted exports getting set up for the users.
  25. - name: Ensure the /exports/ directory exists
  26. file:
  27. path: /exports/
  28. state: directory
  29. mode: 0755
  30. owner: root
  31. group: root
  32. - name: Ensure exports directory exists
  33. file:
  34. path: /etc/exports.d/
  35. state: directory
  36. # # TODO - with_items should be passed a list of storage configs for the
  37. # # desired CFME setup. This might mean a local or remote nfs server, as
  38. # # well as fully qualified filesystem paths.
  39. # - name: Ensure export directories exist
  40. # file:
  41. # path: "{{ item.storage.nfs.directory }}/{{ item.storage.volume.name }}"
  42. # state: directory
  43. # mode: 0777
  44. # owner: nfsnobody
  45. # group: nfsnobody
  46. # with_items:
  47. - name: Enable and start services
  48. systemd:
  49. name: nfs-server
  50. state: started
  51. enabled: yes
  52. register: start_result
  53. - set_fact:
  54. nfs_service_status_changed: "{{ start_result | changed }}"
  55. - name: restart nfs-server
  56. systemd:
  57. name: nfs-server
  58. state: restarted
  59. when: nfs_service_status_changed | default(false)
  60. notify:
  61. - "OpenShift-CFME - Reload NFS Exports"
  62. ######################################################################
  63. # TODO: Move the export directory and PV creation into individual
  64. # tasks under the respective server/database task files.
  65. # # - name: Ensure the miq-pv0X export directories exist
  66. # # file:
  67. # # path: "/exports/{{ item }}"
  68. # # state: directory
  69. # # mode: 0775
  70. # # owner: nfsnobody
  71. # # group: nfsnobody
  72. # # with_items: "{{ openshift_cfme_pv_exports }}"
  73. # # - name: Ensure the NFS exports for CFME PVs exist
  74. # # copy:
  75. # # src: openshift_cfme.exports
  76. # # dest: /etc/exports.d/openshift_cfme.exports
  77. # # register: nfs_exports_updated
  78. # # Create the required CFME PVs. Check out these online docs if you
  79. # # need a refresher on includes looping with items:
  80. # # * http://docs.ansible.com/ansible/playbooks_loops.html#loops-and-includes-in-2-0
  81. # # * http://stackoverflow.com/a/35128533
  82. # # TODO: Handle the case where a PV template is updated in
  83. # # openshift-ansible and the change needs to be landed on the managed
  84. # # cluster.
  85. # # - include: create_pvs.yml
  86. # # with_items: "{{ openshift_cfme_pv_data }}"