12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- ---
- - name: Copy initial heketi resource files
- copy:
- src: "{{ item }}"
- dest: "{{ mktemp.stdout }}/{{ item }}"
- with_items:
- - "deploy-heketi-template.yml"
- - name: Create deploy-heketi template
- oc_obj:
- namespace: "{{ glusterfs_namespace }}"
- kind: template
- name: "deploy-heketi"
- state: present
- files:
- - "{{ mktemp.stdout }}/deploy-heketi-template.yml"
- - name: Deploy deploy-heketi pod
- oc_process:
- namespace: "{{ glusterfs_namespace }}"
- template_name: "deploy-heketi"
- create: True
- params:
- IMAGE_NAME: "{{ glusterfs_heketi_image }}"
- HEKETI_ROUTE: "{{ glusterfs_heketi_url | default(['heketi-',glusterfs_name]|join) }}"
- HEKETI_USER_KEY: "{{ glusterfs_heketi_user_key }}"
- HEKETI_ADMIN_KEY: "{{ glusterfs_heketi_admin_key }}"
- HEKETI_EXECUTOR: "{{ glusterfs_heketi_executor }}"
- HEKETI_FSTAB: "{{ glusterfs_heketi_fstab }}"
- CLUSTER_NAME: "{{ glusterfs_name }}"
- - name: Set heketi Deployed fact
- set_fact:
- glusterfs_heketi_deploy_is_missing: False
- - name: Wait for deploy-heketi pod
- oc_obj:
- namespace: "{{ glusterfs_namespace }}"
- kind: pod
- state: list
- selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
- register: deploy_heketi_pod
- until:
- - "deploy_heketi_pod.results.results[0]['items'] | count > 0"
- # Pod's 'Ready' status must be 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 == 1"
- delay: 10
- retries: "{{ (glusterfs_timeout | int / 10) | int }}"
- when:
- - glusterfs_heketi_is_native
- - not glusterfs_heketi_deploy_is_missing
- - glusterfs_heketi_is_missing
|