heketi_init_db.yml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---
  2. - name: Create heketi DB volume
  3. command: "{{ glusterfs_heketi_client }} setup-openshift-heketi-storage --image {{ glusterfs_heketi_image }} --listfile /tmp/heketi-storage.json"
  4. register: setup_storage
  5. - name: Copy heketi-storage list
  6. shell: "{{ openshift_client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig rsh --namespace={{ glusterfs_namespace }} {{ deploy_heketi_pod.metadata.name }} cat /tmp/heketi-storage.json > {{ mktemp.stdout }}/heketi-storage.json"
  7. # Need `command` here because heketi-storage.json contains multiple objects.
  8. - name: Copy heketi DB to GlusterFS volume
  9. command: "{{ openshift_client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f {{ mktemp.stdout }}/heketi-storage.json -n {{ glusterfs_namespace }}"
  10. when: setup_storage.rc == 0
  11. - name: Wait for copy job to finish
  12. oc_obj:
  13. namespace: "{{ glusterfs_namespace }}"
  14. kind: job
  15. state: list
  16. name: "heketi-storage-copy-job"
  17. register: heketi_job
  18. until:
  19. - "'results' in heketi_job.results and heketi_job.results.results | count > 0"
  20. # Pod's 'Complete' status must be True
  21. - "heketi_job.results.results | lib_utils_oo_collect(attribute='status.conditions') | lib_utils_oo_collect(attribute='status', filters={'type': 'Complete'}) | map('bool') | select | list | count == 1"
  22. delay: 10
  23. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  24. failed_when:
  25. - "'results' in heketi_job.results"
  26. - "heketi_job.results.results | count > 0"
  27. # Fail when pod's 'Failed' status is True
  28. - "heketi_job.results.results | lib_utils_oo_collect(attribute='status.conditions') | lib_utils_oo_collect(attribute='status', filters={'type': 'Failed'}) | map('bool') | select | list | count == 1"
  29. when: setup_storage.rc == 0
  30. - name: Delete deploy resources
  31. oc_obj:
  32. namespace: "{{ glusterfs_namespace }}"
  33. kind: "{{ item.kind }}"
  34. name: "{{ item.name | default(omit) }}"
  35. selector: "{{ item.selector | default(omit) }}"
  36. state: absent
  37. with_items:
  38. - kind: "template,route,service,jobs,dc,secret"
  39. selector: "deploy-heketi"
  40. - kind: "svc"
  41. name: "heketi-storage-endpoints"
  42. - kind: "secret"
  43. name: "heketi-{{ glusterfs_name | default }}-topology-secret"