heketi_pod_check.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - name: Check for existing deploy-heketi pod
  3. oc_obj:
  4. namespace: "{{ glusterfs_namespace }}"
  5. state: list
  6. kind: pod
  7. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  8. register: deploy_heketi_pod_check
  9. - name: Check if need to deploy deploy-heketi
  10. set_fact:
  11. glusterfs_heketi_deploy_is_missing: False
  12. deploy_heketi_pod: "{{ deploy_heketi_pod_check.results.results[0]['items'][0] }}"
  13. when:
  14. - "deploy_heketi_pod_check.results.results[0]['items'] | count > 0"
  15. # deploy-heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  16. - "deploy_heketi_pod_check.results.results[0]['items'] | lib_utils_oo_collect(attribute='status.conditions') | lib_utils_oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count > 0"
  17. - name: Check for existing heketi pod
  18. oc_obj:
  19. namespace: "{{ glusterfs_namespace }}"
  20. state: list
  21. kind: pod
  22. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  23. register: heketi_pod_check
  24. - name: Check if need to deploy heketi
  25. set_fact:
  26. glusterfs_heketi_is_missing: False
  27. heketi_pod: "{{ heketi_pod_check.results.results[0]['items'][0] }}"
  28. when:
  29. - "heketi_pod_check.results.results[0]['items'] | count > 0"
  30. # heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  31. - "heketi_pod_check.results.results[0]['items'] | lib_utils_oo_collect(attribute='status.conditions') | lib_utils_oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count > 0"