glusterfs_common.yml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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
  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 | default }}-topology-secret"
  31. - kind: "secret"
  32. name: "heketi-{{ glusterfs_name | default }}-config-secret"
  33. - kind: "template,route,service,dc"
  34. name: "heketi-{{ glusterfs_name | default }}"
  35. - kind: "svc"
  36. name: "heketi-db-{{ glusterfs_name | default }}-endpoints"
  37. - kind: "sa"
  38. name: "heketi-{{ glusterfs_name | default }}-service-account"
  39. - kind: "secret"
  40. name: "heketi-{{ glusterfs_name | default }}-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: Create heketi config secret
  149. oc_secret:
  150. namespace: "{{ glusterfs_namespace }}"
  151. state: present
  152. name: "heketi-{{ glusterfs_name }}-config-secret"
  153. force: True
  154. files:
  155. - name: heketi.json
  156. path: "{{ mktemp.stdout }}/heketi.json"
  157. - name: private_key
  158. path: "{{ glusterfs_heketi_ssh_keyfile }}"
  159. when:
  160. - glusterfs_heketi_is_native
  161. - include: heketi_deploy_part1.yml
  162. when:
  163. - glusterfs_heketi_is_native
  164. - glusterfs_heketi_deploy_is_missing
  165. - glusterfs_heketi_is_missing
  166. - name: Set heketi-cli command
  167. set_fact:
  168. 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 %}"
  169. - name: Verify heketi service
  170. command: "{{ glusterfs_heketi_client }} cluster list"
  171. changed_when: False
  172. - name: Load heketi topology
  173. command: "{{ glusterfs_heketi_client }} topology load --json={{ mktemp.stdout }}/topology.json 2>&1"
  174. register: topology_load
  175. failed_when: "topology_load.rc != 0 or 'Unable' in topology_load.stdout"
  176. when:
  177. - glusterfs_heketi_topology_load
  178. - include: heketi_deploy_part2.yml
  179. when:
  180. - glusterfs_heketi_is_native
  181. - glusterfs_heketi_is_missing
  182. - name: Create heketi secret
  183. oc_secret:
  184. namespace: "{{ glusterfs_namespace }}"
  185. state: present
  186. name: "heketi-{{ glusterfs_name }}-admin-secret"
  187. type: "kubernetes.io/glusterfs"
  188. force: True
  189. contents:
  190. - path: key
  191. data: "{{ glusterfs_heketi_admin_key }}"
  192. when:
  193. - glusterfs_storageclass
  194. - glusterfs_heketi_admin_key is defined
  195. - name: Get heketi route
  196. oc_obj:
  197. namespace: "{{ glusterfs_namespace }}"
  198. kind: route
  199. state: list
  200. name: "heketi-{{ glusterfs_name }}"
  201. register: heketi_route
  202. when:
  203. - glusterfs_storageclass
  204. - glusterfs_heketi_is_native
  205. - name: Determine StorageClass heketi URL
  206. set_fact:
  207. glusterfs_heketi_route: "{{ heketi_route.results.results[0]['spec']['host'] }}"
  208. when:
  209. - glusterfs_storageclass
  210. - glusterfs_heketi_is_native
  211. - name: Generate GlusterFS StorageClass file
  212. template:
  213. src: "{{ openshift.common.examples_content_version }}/glusterfs-storageclass.yml.j2"
  214. dest: "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  215. when:
  216. - glusterfs_storageclass
  217. - name: Create GlusterFS StorageClass
  218. oc_obj:
  219. state: present
  220. kind: storageclass
  221. name: "glusterfs-{{ glusterfs_name }}"
  222. files:
  223. - "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  224. when:
  225. - glusterfs_storageclass