heketi_pod_check.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132
  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
  9. - name: Check if need to deploy deploy-heketi
  10. set_fact:
  11. glusterfs_heketi_deploy_is_missing: False
  12. when:
  13. - "deploy_heketi_pod.results.results[0]['items'] | count > 0"
  14. # deploy-heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  15. - "deploy_heketi_pod.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"
  16. - name: Check for existing heketi pod
  17. oc_obj:
  18. namespace: "{{ glusterfs_namespace }}"
  19. state: list
  20. kind: pod
  21. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  22. register: heketi_pod
  23. - name: Check if need to deploy heketi
  24. set_fact:
  25. glusterfs_heketi_is_missing: False
  26. when:
  27. - "heketi_pod.results.results[0]['items'] | count > 0"
  28. # heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  29. - "heketi_pod.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"