heketi_init_deploy.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. - name: Copy initial heketi resource files
  3. copy:
  4. src: "{{ item }}"
  5. dest: "{{ mktemp.stdout }}/{{ item }}"
  6. with_items:
  7. - "deploy-heketi-template.yml"
  8. - name: Create deploy-heketi template
  9. oc_obj:
  10. namespace: "{{ glusterfs_namespace }}"
  11. kind: template
  12. name: "deploy-heketi"
  13. state: present
  14. files:
  15. - "{{ mktemp.stdout }}/deploy-heketi-template.yml"
  16. - name: Deploy deploy-heketi pod
  17. oc_process:
  18. namespace: "{{ glusterfs_namespace }}"
  19. template_name: "deploy-heketi"
  20. create: True
  21. params:
  22. IMAGE_NAME: "{{ glusterfs_heketi_image }}"
  23. HEKETI_ROUTE: "{{ glusterfs_heketi_url | default(['heketi-',glusterfs_name]|join) }}"
  24. HEKETI_USER_KEY: "{{ glusterfs_heketi_user_key }}"
  25. HEKETI_ADMIN_KEY: "{{ glusterfs_heketi_admin_key }}"
  26. HEKETI_EXECUTOR: "{{ glusterfs_heketi_executor }}"
  27. HEKETI_FSTAB: "{{ glusterfs_heketi_fstab }}"
  28. CLUSTER_NAME: "{{ glusterfs_name }}"
  29. - name: Wait for deploy-heketi pod
  30. oc_obj:
  31. namespace: "{{ glusterfs_namespace }}"
  32. kind: pod
  33. state: list
  34. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  35. register: deploy_heketi_pod_wait
  36. until:
  37. - "deploy_heketi_pod_wait.results.results[0]['items'] | count > 0"
  38. # Pod's 'Ready' status must be True
  39. - "deploy_heketi_pod_wait.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"
  40. delay: 10
  41. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  42. - name: Update deploy-heketi pod result
  43. set_fact:
  44. deploy_heketi_pod: "{{ deploy_heketi_pod_wait.results.results[0]['items'][0] }}"
  45. - name: Set deploy-heketi deployed fact
  46. set_fact:
  47. glusterfs_heketi_deploy_is_missing: False