create_pvs.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. # Check for existance and then conditionally:
  3. # - evaluate templates
  4. # - PVs
  5. #
  6. # These tasks idempotently create required CFME PV objects. Do not
  7. # call this file directly. This file is intended to be ran as an
  8. # include that has a 'with_items' attached to it. Hence the use below
  9. # of variables like "{{ item.pv_label }}"
  10. - name: "Check if the {{ item.pv_label }} template has been created already"
  11. oc_obj:
  12. namespace: "{{ openshift_cfme_project }}"
  13. state: list
  14. kind: pv
  15. name: "{{ item.pv_name }}"
  16. register: miq_pv_check
  17. # Skip all of this if the PV already exists
  18. - block:
  19. - name: "Ensure the {{ item.pv_label }} template is evaluated"
  20. template:
  21. src: "{{ item.pv_template }}.j2"
  22. dest: "{{ template_dir }}/{{ item.pv_template }}"
  23. - name: "Ensure {{ item.pv_label }} is created"
  24. oc_obj:
  25. namespace: "{{ openshift_cfme_project }}"
  26. kind: pv
  27. name: "{{ item.pv_name }}"
  28. state: present
  29. delete_after: True
  30. files:
  31. - "{{ template_dir }}/{{ item.pv_template }}"
  32. when:
  33. - not miq_pv_check.results.results.0