nfs.yml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ---
  2. # Tasks to statically provision NFS volumes
  3. # Include if not using dynamic volume provisioning
  4. - name: Ensure we save the local NFS server if one is provided
  5. set_fact:
  6. openshift_cfme_nfs_server: "{{ openshift_cfme_storage_nfs_local_hostname }}"
  7. when:
  8. - openshift_cfme_storage_nfs_local_hostname is defined
  9. - openshift_cfme_storage_nfs_local_hostname != False
  10. - openshift_cfme_storage_class == "nfs"
  11. - name: Ensure we save the local NFS server
  12. set_fact:
  13. openshift_cfme_nfs_server: "{{ groups['oo_nfs_to_config'].0 }}"
  14. when:
  15. - openshift_cfme_nfs_server is not defined
  16. - openshift_cfme_storage_class == "nfs"
  17. - name: Ensure we save the external NFS server
  18. set_fact:
  19. openshift_cfme_nfs_server: "{{ openshift_cfme_storage_nfs_external_hostname }}"
  20. when:
  21. - openshift_cfme_storage_class == "nfs_external"
  22. - name: Failed NFS server detection
  23. assert:
  24. that:
  25. - openshift_cfme_nfs_server is defined
  26. msg: |
  27. "Unable to detect an NFS server. The 'nfs_external'
  28. openshift_cfme_storage_class option requires that you set
  29. openshift_cfme_storage_nfs_external_hostname. NFS hosts detected
  30. for local nfs services: {{ groups['oo_nfs_to_config'] | join(', ') }}"
  31. - name: Setting up NFS storage
  32. block:
  33. - name: Include the NFS Setup role tasks
  34. include_role:
  35. role: openshift_nfs
  36. tasks_from: setup
  37. vars:
  38. l_nfs_base_dir: "{{ openshift_cfme_storage_nfs_base_dir }}"
  39. - name: Create the App export
  40. include_role:
  41. role: openshift_nfs
  42. tasks_from: create_export
  43. vars:
  44. l_nfs_base_dir: "{{ openshift_cfme_storage_nfs_base_dir }}"
  45. l_nfs_export_config: "{{ openshift_cfme_flavor_short }}"
  46. l_nfs_export_name: "{{ openshift_cfme_flavor_short }}-app"
  47. l_nfs_options: "*(rw,no_root_squash,no_wdelay)"
  48. - name: Create the DB export
  49. include_role:
  50. role: openshift_nfs
  51. tasks_from: create_export
  52. vars:
  53. l_nfs_base_dir: "{{ openshift_cfme_storage_nfs_base_dir }}"
  54. l_nfs_export_config: "{{ openshift_cfme_flavor_short }}"
  55. l_nfs_export_name: "{{ openshift_cfme_flavor_short }}-db"
  56. l_nfs_options: "*(rw,no_root_squash,no_wdelay)"
  57. when:
  58. - openshift_cfme_app_template in ['miq-template', 'cfme-template']
  59. delegate_to: "{{ openshift_cfme_nfs_server }}"