heketi_deploy_part2.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. ---
  2. - name: Create heketi DB volume
  3. command: "{{ glusterfs_heketi_client }} setup-openshift-heketi-storage --listfile /tmp/heketi-storage.json"
  4. register: setup_storage
  5. - name: Copy heketi-storage list
  6. shell: "{{ openshift.common.client_binary }} rsh --namespace={{ glusterfs_namespace }} {{ heketi_pod.results.results[0]['items'][0]['metadata']['name'] }} cat /tmp/heketi-storage.json > {{ mktemp.stdout }}/heketi-storage.json"
  7. # This is used in the subsequent task
  8. - name: Copy the admin client config
  9. command: >
  10. cp {{ openshift.common.config_base }}/master/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  11. changed_when: False
  12. check_mode: no
  13. # Need `command` here because heketi-storage.json contains multiple objects.
  14. - name: Copy heketi DB to GlusterFS volume
  15. command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f {{ mktemp.stdout }}/heketi-storage.json -n {{ glusterfs_namespace }}"
  16. when: setup_storage.rc == 0
  17. - name: Wait for copy job to finish
  18. oc_obj:
  19. namespace: "{{ glusterfs_namespace }}"
  20. kind: job
  21. state: list
  22. name: "heketi-storage-copy-job"
  23. register: heketi_job
  24. until:
  25. - "'results' in heketi_job.results and heketi_job.results.results | count > 0"
  26. # Pod's 'Complete' status must be True
  27. - "heketi_job.results.results | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Complete'}) | map('bool') | select | list | count == 1"
  28. delay: 10
  29. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  30. failed_when:
  31. - "'results' in heketi_job.results"
  32. - "heketi_job.results.results | count > 0"
  33. # Fail when pod's 'Failed' status is True
  34. - "heketi_job.results.results | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Failed'}) | map('bool') | select | list | count == 1"
  35. when: setup_storage.rc == 0
  36. - name: Delete deploy resources
  37. oc_obj:
  38. namespace: "{{ glusterfs_namespace }}"
  39. kind: "{{ item.kind }}"
  40. name: "{{ item.name | default(omit) }}"
  41. selector: "{{ item.selector | default(omit) }}"
  42. state: absent
  43. with_items:
  44. - kind: "template,route,service,jobs,dc,secret"
  45. selector: "deploy-heketi"
  46. - kind: "svc"
  47. name: "heketi-storage-endpoints"
  48. - kind: "secret"
  49. name: "heketi-{{ glusterfs_name | default }}-topology-secret"
  50. - name: Generate heketi endpoints
  51. template:
  52. src: "{{ openshift.common.examples_content_version }}/heketi-endpoints.yml.j2"
  53. dest: "{{ mktemp.stdout }}/heketi-endpoints.yml"
  54. - name: Generate heketi service
  55. template:
  56. src: "{{ openshift.common.examples_content_version }}/heketi-service.yml.j2"
  57. dest: "{{ mktemp.stdout }}/heketi-service.yml"
  58. - name: Create heketi endpoints
  59. oc_obj:
  60. namespace: "{{ glusterfs_namespace }}"
  61. state: present
  62. kind: endpoints
  63. name: "heketi-db-{{ glusterfs_name }}-endpoints"
  64. files:
  65. - "{{ mktemp.stdout }}/heketi-endpoints.yml"
  66. - name: Create heketi service
  67. oc_obj:
  68. namespace: "{{ glusterfs_namespace }}"
  69. state: present
  70. kind: service
  71. name: "heketi-db-{{ glusterfs_name }}-endpoints"
  72. files:
  73. - "{{ mktemp.stdout }}/heketi-service.yml"
  74. - name: Copy heketi template
  75. copy:
  76. src: "{{ openshift.common.examples_content_version }}/heketi-template.yml"
  77. dest: "{{ mktemp.stdout }}/heketi-template.yml"
  78. - name: Create heketi template
  79. oc_obj:
  80. namespace: "{{ glusterfs_namespace }}"
  81. kind: template
  82. name: heketi
  83. state: present
  84. files:
  85. - "{{ mktemp.stdout }}/heketi-template.yml"
  86. - name: Deploy heketi pod
  87. oc_process:
  88. namespace: "{{ glusterfs_namespace }}"
  89. template_name: "heketi"
  90. create: True
  91. params:
  92. IMAGE_NAME: "{{ glusterfs_heketi_image }}"
  93. IMAGE_VERSION: "{{ glusterfs_heketi_version }}"
  94. HEKETI_ROUTE: "{{ glusterfs_heketi_url | default(['heketi-',glusterfs_name]|join) }}"
  95. HEKETI_USER_KEY: "{{ glusterfs_heketi_user_key }}"
  96. HEKETI_ADMIN_KEY: "{{ glusterfs_heketi_admin_key }}"
  97. HEKETI_EXECUTOR: "{{ glusterfs_heketi_executor }}"
  98. HEKETI_KUBE_NAMESPACE: "{{ glusterfs_namespace }}"
  99. CLUSTER_NAME: "{{ glusterfs_name }}"
  100. - name: Wait for heketi pod
  101. oc_obj:
  102. namespace: "{{ glusterfs_namespace }}"
  103. kind: pod
  104. state: list
  105. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  106. register: heketi_pod
  107. until:
  108. - "heketi_pod.results.results[0]['items'] | count > 0"
  109. # Pod's 'Ready' status must be True
  110. - "heketi_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == 1"
  111. delay: 10
  112. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  113. - name: Set heketi-cli command
  114. set_fact:
  115. glusterfs_heketi_client: "{{ openshift.common.client_binary }} 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 }}'"
  116. - name: Verify heketi service
  117. command: "{{ glusterfs_heketi_client }} cluster list"
  118. changed_when: False