heketi_deploy_part2.yml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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.results.results[0]['items'][0]['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"
  44. - name: Generate heketi endpoints
  45. template:
  46. src: "heketi-endpoints.yml.j2"
  47. dest: "{{ mktemp.stdout }}/heketi-endpoints.yml"
  48. - name: Generate heketi service
  49. template:
  50. src: "heketi-service.yml.j2"
  51. dest: "{{ mktemp.stdout }}/heketi-service.yml"
  52. - name: Create heketi endpoints
  53. oc_obj:
  54. namespace: "{{ glusterfs_namespace }}"
  55. state: present
  56. kind: endpoints
  57. name: "heketi-db-{{ glusterfs_name }}-endpoints"
  58. files:
  59. - "{{ mktemp.stdout }}/heketi-endpoints.yml"
  60. - name: Create heketi service
  61. oc_obj:
  62. namespace: "{{ glusterfs_namespace }}"
  63. state: present
  64. kind: service
  65. name: "heketi-db-{{ glusterfs_name }}-endpoints"
  66. files:
  67. - "{{ mktemp.stdout }}/heketi-service.yml"
  68. - name: Copy heketi template
  69. copy:
  70. src: "heketi-template.yml"
  71. dest: "{{ mktemp.stdout }}/heketi-template.yml"
  72. - name: Create heketi template
  73. oc_obj:
  74. namespace: "{{ glusterfs_namespace }}"
  75. kind: template
  76. name: heketi
  77. state: present
  78. files:
  79. - "{{ mktemp.stdout }}/heketi-template.yml"
  80. - name: Deploy heketi pod
  81. oc_process:
  82. namespace: "{{ glusterfs_namespace }}"
  83. template_name: "heketi"
  84. create: True
  85. params:
  86. IMAGE_NAME: "{{ glusterfs_heketi_image }}"
  87. HEKETI_ROUTE: "{{ glusterfs_heketi_url | default(['heketi-',glusterfs_name]|join) }}"
  88. HEKETI_USER_KEY: "{{ glusterfs_heketi_user_key }}"
  89. HEKETI_ADMIN_KEY: "{{ glusterfs_heketi_admin_key }}"
  90. HEKETI_EXECUTOR: "{{ glusterfs_heketi_executor }}"
  91. HEKETI_FSTAB: "{{ glusterfs_heketi_fstab }}"
  92. CLUSTER_NAME: "{{ glusterfs_name }}"
  93. - name: Wait for heketi pod
  94. oc_obj:
  95. namespace: "{{ glusterfs_namespace }}"
  96. kind: pod
  97. state: list
  98. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  99. register: heketi_pod
  100. until:
  101. - "heketi_pod.results.results[0]['items'] | count > 0"
  102. # Pod's 'Ready' status must be True
  103. - "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"
  104. delay: 10
  105. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  106. - name: Set heketi-cli command
  107. set_fact:
  108. glusterfs_heketi_client: "{{ openshift_client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig rsh --namespace={{ glusterfs_namespace }} {{ heketi_pod.results.results[0]['items'][0]['metadata']['name'] }} {{ glusterfs_heketi_cli }} -s http://localhost:8080 --user admin --secret '{{ glusterfs_heketi_admin_key }}'"
  109. - name: Verify heketi service
  110. command: "{{ glusterfs_heketi_client }} cluster list"
  111. changed_when: False