1234567891011121314151617181920212223242526272829303132 |
- ---
- - name: Check for existing deploy-heketi pod
- oc_obj:
- namespace: "{{ glusterfs_namespace }}"
- state: list
- kind: pod
- selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
- register: deploy_heketi_pod
- - name: Check if need to deploy deploy-heketi
- set_fact:
- glusterfs_heketi_deploy_is_missing: False
- when:
- - "deploy_heketi_pod.results.results[0]['items'] | count > 0"
- # deploy-heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
- - "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"
- - name: Check for existing heketi pod
- oc_obj:
- namespace: "{{ glusterfs_namespace }}"
- state: list
- kind: pod
- selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
- register: heketi_pod
- - name: Check if need to deploy heketi
- set_fact:
- glusterfs_heketi_is_missing: False
- when:
- - "heketi_pod.results.results[0]['items'] | count > 0"
- # heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
- - "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"
|