heketi_deploy_part1.yml 1.7 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: Set heketi Deployed fact
  30. set_fact:
  31. glusterfs_heketi_deploy_is_missing: False
  32. - name: Wait for deploy-heketi pod
  33. oc_obj:
  34. namespace: "{{ glusterfs_namespace }}"
  35. kind: pod
  36. state: list
  37. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  38. register: deploy_heketi_pod
  39. until:
  40. - "deploy_heketi_pod.results.results[0]['items'] | count > 0"
  41. # Pod's 'Ready' status must be True
  42. - "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"
  43. delay: 10
  44. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  45. when:
  46. - glusterfs_heketi_is_native
  47. - not glusterfs_heketi_deploy_is_missing
  48. - glusterfs_heketi_is_missing