glusterfs_common.yml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. ---
  2. - name: Make sure heketi-client is installed
  3. package: name=heketi-client state=present
  4. when:
  5. - not openshift.common.is_atomic | bool
  6. - not glusterfs_heketi_is_native | bool
  7. - name: Verify heketi-cli is installed
  8. shell: "command -v {{ glusterfs_heketi_cli }} >/dev/null 2>&1 || { echo >&2 'ERROR: Make sure heketi-cli is available, then re-run the installer'; exit 1; }"
  9. changed_when: False
  10. when:
  11. - not glusterfs_heketi_is_native | bool
  12. - name: Verify target namespace exists
  13. oc_project:
  14. state: present
  15. name: "{{ glusterfs_namespace }}"
  16. when: glusterfs_is_native or glusterfs_heketi_is_native or glusterfs_storageclass
  17. - name: Delete pre-existing heketi resources
  18. oc_obj:
  19. namespace: "{{ glusterfs_namespace }}"
  20. kind: "{{ item.kind }}"
  21. name: "{{ item.name | default(omit) }}"
  22. selector: "{{ item.selector | default(omit) }}"
  23. state: absent
  24. with_items:
  25. - kind: "template,route,service,dc,jobs,secret"
  26. selector: "deploy-heketi"
  27. - kind: "svc"
  28. name: "heketi-storage-endpoints"
  29. - kind: "secret"
  30. name: "heketi-{{ glusterfs_name }}-topology-secret"
  31. - kind: "secret"
  32. name: "heketi-{{ glusterfs_name }}-config-secret"
  33. - kind: "template,route,service,dc"
  34. name: "heketi-{{ glusterfs_name }}"
  35. - kind: "svc"
  36. name: "heketi-db-{{ glusterfs_name }}-endpoints"
  37. - kind: "sa"
  38. name: "heketi-{{ glusterfs_name }}-service-account"
  39. - kind: "secret"
  40. name: "heketi-{{ glusterfs_name }}-admin-secret"
  41. failed_when: False
  42. when: glusterfs_heketi_wipe
  43. - name: Wait for deploy-heketi pods to terminate
  44. oc_obj:
  45. namespace: "{{ glusterfs_namespace }}"
  46. kind: pod
  47. state: list
  48. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  49. register: heketi_pod
  50. until: "heketi_pod.results.results[0]['items'] | count == 0"
  51. delay: 10
  52. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  53. when: glusterfs_heketi_wipe
  54. - name: Wait for heketi pods to terminate
  55. oc_obj:
  56. namespace: "{{ glusterfs_namespace }}"
  57. kind: pod
  58. state: list
  59. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  60. register: heketi_pod
  61. until: "heketi_pod.results.results[0]['items'] | count == 0"
  62. delay: 10
  63. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  64. when: glusterfs_heketi_wipe
  65. - include: glusterfs_deploy.yml
  66. when: glusterfs_is_native
  67. - name: Create heketi service account
  68. oc_serviceaccount:
  69. namespace: "{{ glusterfs_namespace }}"
  70. name: "heketi-{{ glusterfs_name }}-service-account"
  71. state: present
  72. when: glusterfs_heketi_is_native
  73. - name: Add heketi service account to privileged SCC
  74. oc_adm_policy_user:
  75. namespace: "{{ glusterfs_namespace }}"
  76. user: "system:serviceaccount:{{ glusterfs_namespace }}:heketi-{{ glusterfs_name }}-service-account"
  77. resource_kind: scc
  78. resource_name: privileged
  79. state: present
  80. when: glusterfs_heketi_is_native
  81. - name: Allow heketi service account to view/edit pods
  82. oc_adm_policy_user:
  83. namespace: "{{ glusterfs_namespace }}"
  84. user: "system:serviceaccount:{{ glusterfs_namespace }}:heketi-{{ glusterfs_name }}-service-account"
  85. resource_kind: role
  86. resource_name: edit
  87. state: present
  88. when: glusterfs_heketi_is_native
  89. - name: Check for existing deploy-heketi pod
  90. oc_obj:
  91. namespace: "{{ glusterfs_namespace }}"
  92. state: list
  93. kind: pod
  94. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  95. register: heketi_pod
  96. when: glusterfs_heketi_is_native
  97. - name: Check if need to deploy deploy-heketi
  98. set_fact:
  99. glusterfs_heketi_deploy_is_missing: False
  100. when:
  101. - "glusterfs_heketi_is_native"
  102. - "heketi_pod.results.results[0]['items'] | count > 0"
  103. # deploy-heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  104. - "heketi_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count > 0"
  105. - name: Check for existing heketi pod
  106. oc_obj:
  107. namespace: "{{ glusterfs_namespace }}"
  108. state: list
  109. kind: pod
  110. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  111. register: heketi_pod
  112. when: glusterfs_heketi_is_native
  113. - name: Check if need to deploy heketi
  114. set_fact:
  115. glusterfs_heketi_is_missing: False
  116. when:
  117. - "glusterfs_heketi_is_native"
  118. - "heketi_pod.results.results[0]['items'] | count > 0"
  119. # heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  120. - "heketi_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count > 0"
  121. - name: Generate topology file
  122. template:
  123. src: "{{ openshift.common.examples_content_version }}/topology.json.j2"
  124. dest: "{{ mktemp.stdout }}/topology.json"
  125. when:
  126. - glusterfs_heketi_topology_load
  127. - name: Generate heketi config file
  128. template:
  129. src: "{{ openshift.common.examples_content_version }}/heketi.json.j2"
  130. dest: "{{ mktemp.stdout }}/heketi.json"
  131. when:
  132. - glusterfs_heketi_is_native
  133. - name: Generate heketi admin key
  134. set_fact:
  135. glusterfs_heketi_admin_key: "{{ 32 | oo_generate_secret }}"
  136. when:
  137. - glusterfs_heketi_is_native
  138. - glusterfs_heketi_admin_key is undefined
  139. - name: Generate heketi user key
  140. set_fact:
  141. glusterfs_heketi_user_key: "{{ 32 | oo_generate_secret }}"
  142. until: "glusterfs_heketi_user_key != glusterfs_heketi_admin_key"
  143. delay: 1
  144. retries: 10
  145. when:
  146. - glusterfs_heketi_is_native
  147. - glusterfs_heketi_user_key is undefined
  148. - name: Copy heketi private key
  149. copy:
  150. src: "{{ glusterfs_heketi_ssh_keyfile | default(omit) }}"
  151. content: "{{ '' if glusterfs_heketi_ssh_keyfile is undefined else omit }}"
  152. dest: "{{ mktemp.stdout }}/private_key"
  153. - name: Create heketi config secret
  154. oc_secret:
  155. namespace: "{{ glusterfs_namespace }}"
  156. state: present
  157. name: "heketi-{{ glusterfs_name }}-config-secret"
  158. force: True
  159. files:
  160. - name: heketi.json
  161. path: "{{ mktemp.stdout }}/heketi.json"
  162. - name: private_key
  163. path: "{{ mktemp.stdout }}/private_key"
  164. when:
  165. - glusterfs_heketi_is_native
  166. - include: heketi_deploy_part1.yml
  167. when:
  168. - glusterfs_heketi_is_native
  169. - glusterfs_heketi_deploy_is_missing
  170. - glusterfs_heketi_is_missing
  171. - name: Set heketi-cli command
  172. set_fact:
  173. glusterfs_heketi_client: "{% if glusterfs_heketi_is_native %}{{ openshift.common.client_binary }} rsh --namespace={{ glusterfs_namespace }} {{ heketi_pod.results.results[0]['items'][0]['metadata']['name'] }} {% endif %}{{ glusterfs_heketi_cli }} -s http://{% if glusterfs_heketi_is_native %}localhost:8080{% else %}{{ glusterfs_heketi_url }}:{{ glusterfs_heketi_port }}{% endif %} --user admin {% if glusterfs_heketi_admin_key is defined %}--secret '{{ glusterfs_heketi_admin_key }}'{% endif %}"
  174. - name: Verify heketi service
  175. command: "{{ glusterfs_heketi_client }} cluster list"
  176. changed_when: False
  177. - name: Load heketi topology
  178. command: "{{ glusterfs_heketi_client }} topology load --json={{ mktemp.stdout }}/topology.json 2>&1"
  179. register: topology_load
  180. failed_when: "topology_load.rc != 0 or 'Unable' in topology_load.stdout"
  181. when:
  182. - glusterfs_heketi_topology_load
  183. - include: heketi_deploy_part2.yml
  184. when:
  185. - glusterfs_heketi_is_native
  186. - glusterfs_heketi_is_missing
  187. - name: Create heketi secret
  188. oc_secret:
  189. namespace: "{{ glusterfs_namespace }}"
  190. state: present
  191. name: "heketi-{{ glusterfs_name }}-admin-secret"
  192. type: "kubernetes.io/glusterfs"
  193. force: True
  194. contents:
  195. - path: key
  196. data: "{{ glusterfs_heketi_admin_key }}"
  197. when:
  198. - glusterfs_storageclass
  199. - glusterfs_heketi_admin_key is defined
  200. - name: Get heketi route
  201. oc_obj:
  202. namespace: "{{ glusterfs_namespace }}"
  203. kind: route
  204. state: list
  205. name: "heketi-{{ glusterfs_name }}"
  206. register: heketi_route
  207. when:
  208. - glusterfs_storageclass
  209. - glusterfs_heketi_is_native
  210. - name: Determine StorageClass heketi URL
  211. set_fact:
  212. glusterfs_heketi_route: "{{ heketi_route.results.results[0]['spec']['host'] }}"
  213. when:
  214. - glusterfs_storageclass
  215. - glusterfs_heketi_is_native
  216. - name: Generate GlusterFS StorageClass file
  217. template:
  218. src: "{{ openshift.common.examples_content_version }}/glusterfs-storageclass.yml.j2"
  219. dest: "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  220. when:
  221. - glusterfs_storageclass
  222. - name: Create GlusterFS StorageClass
  223. oc_obj:
  224. state: present
  225. kind: storageclass
  226. name: "glusterfs-{{ glusterfs_name }}"
  227. files:
  228. - "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  229. when:
  230. - glusterfs_storageclass