create_nfs_pvs.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---
  2. # Create the required PVs for the App and the DB
  3. - name: Check if the CFME App PV has been created
  4. oc_obj:
  5. namespace: "{{ openshift_cfme_project }}"
  6. state: list
  7. kind: pv
  8. name: "{{ openshift_cfme_flavor_short }}-app"
  9. register: miq_app_pv_check
  10. - name: Check if the CFME DB PV has been created
  11. oc_obj:
  12. namespace: "{{ openshift_cfme_project }}"
  13. state: list
  14. kind: pv
  15. name: "{{ openshift_cfme_flavor_short }}-db"
  16. register: miq_db_pv_check
  17. when:
  18. - openshift_cfme_app_template in ['miq-template', 'cfme-template']
  19. - name: Ensure the CFME App PV is created
  20. oc_process:
  21. namespace: "{{ openshift_cfme_project }}"
  22. template_name: "{{ openshift_cfme_flavor }}-app-pv"
  23. create: True
  24. params:
  25. PV_SIZE: "{{ openshift_cfme_app_pv_size }}"
  26. BASE_PATH: "{{ openshift_cfme_storage_nfs_base_dir }}"
  27. NFS_HOST: "{{ openshift_cfme_nfs_server }}"
  28. when: miq_app_pv_check.results.results == [{}]
  29. - name: Ensure the CFME DB PV is created
  30. oc_process:
  31. namespace: "{{ openshift_cfme_project }}"
  32. template_name: "{{ openshift_cfme_flavor }}-db-pv"
  33. create: True
  34. params:
  35. PV_SIZE: "{{ openshift_cfme_db_pv_size }}"
  36. BASE_PATH: "{{ openshift_cfme_storage_nfs_base_dir }}"
  37. NFS_HOST: "{{ openshift_cfme_nfs_server }}"
  38. when:
  39. - openshift_cfme_app_template in ['miq-template', 'cfme-template']
  40. - miq_db_pv_check.results.results == [{}]