glusterfs_common.yml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. ---
  2. - name: Make sure heketi-client is installed
  3. package: name=heketi-client state=present
  4. when:
  5. - not openshift_is_atomic | bool
  6. - not glusterfs_heketi_is_native | bool
  7. register: result
  8. until: result is succeeded
  9. - name: Verify heketi-cli is installed
  10. 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; }"
  11. changed_when: False
  12. when:
  13. - not glusterfs_heketi_is_native | bool
  14. - name: Verify target namespace exists
  15. oc_project:
  16. state: present
  17. name: "{{ glusterfs_namespace }}"
  18. node_selector: "{% if glusterfs_use_default_selector %}{{ omit }}{% endif %}"
  19. when: glusterfs_is_native or glusterfs_heketi_is_native or glusterfs_storageclass
  20. - name: Add namespace service accounts to privileged SCC
  21. oc_adm_policy_user:
  22. user: "system:serviceaccount:{{ glusterfs_namespace }}:{{ item }}"
  23. resource_kind: scc
  24. resource_name: privileged
  25. state: present
  26. with_items:
  27. - 'default'
  28. - 'router'
  29. when: glusterfs_is_native or glusterfs_heketi_is_native
  30. - name: Delete pre-existing heketi 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,dc,jobs,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. - kind: "secret"
  45. name: "heketi-{{ glusterfs_name | default }}-config-secret"
  46. - kind: "template,route,service,dc"
  47. name: "heketi-{{ glusterfs_name | default }}"
  48. - kind: "svc"
  49. name: "heketi-db-{{ glusterfs_name | default }}-endpoints"
  50. - kind: "sa"
  51. name: "heketi-{{ glusterfs_name | default }}-service-account"
  52. - kind: "secret"
  53. name: "heketi-{{ glusterfs_name | default }}-admin-secret"
  54. failed_when: False
  55. when: glusterfs_heketi_wipe
  56. - name: Wait for deploy-heketi pods to terminate
  57. oc_obj:
  58. namespace: "{{ glusterfs_namespace }}"
  59. kind: pod
  60. state: list
  61. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  62. register: deploy_heketi_pod
  63. until: "deploy_heketi_pod.results.results[0]['items'] | count == 0"
  64. delay: 10
  65. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  66. when: glusterfs_heketi_wipe
  67. - name: Wait for heketi pods to terminate
  68. oc_obj:
  69. namespace: "{{ glusterfs_namespace }}"
  70. kind: pod
  71. state: list
  72. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  73. register: heketi_pod
  74. until: "heketi_pod.results.results[0]['items'] | count == 0"
  75. delay: 10
  76. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  77. when: glusterfs_heketi_wipe
  78. - include_tasks: glusterfs_deploy.yml
  79. when: glusterfs_is_native
  80. - name: Create heketi service account
  81. oc_serviceaccount:
  82. namespace: "{{ glusterfs_namespace }}"
  83. name: "heketi-{{ glusterfs_name }}-service-account"
  84. state: present
  85. when: glusterfs_heketi_is_native
  86. - name: Add heketi service account to privileged SCC
  87. oc_adm_policy_user:
  88. namespace: "{{ glusterfs_namespace }}"
  89. user: "system:serviceaccount:{{ glusterfs_namespace }}:heketi-{{ glusterfs_name }}-service-account"
  90. resource_kind: scc
  91. resource_name: privileged
  92. state: present
  93. when: glusterfs_heketi_is_native
  94. - name: Allow heketi service account to view/edit pods
  95. oc_adm_policy_user:
  96. namespace: "{{ glusterfs_namespace }}"
  97. user: "system:serviceaccount:{{ glusterfs_namespace }}:heketi-{{ glusterfs_name }}-service-account"
  98. resource_kind: role
  99. resource_name: edit
  100. state: present
  101. when: glusterfs_heketi_is_native
  102. - name: Check for existing deploy-heketi pod
  103. oc_obj:
  104. namespace: "{{ glusterfs_namespace }}"
  105. state: list
  106. kind: pod
  107. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  108. register: deploy_heketi_pod
  109. when: glusterfs_heketi_is_native
  110. - name: Check if need to deploy deploy-heketi
  111. set_fact:
  112. glusterfs_heketi_deploy_is_missing: False
  113. when:
  114. - "glusterfs_heketi_is_native"
  115. - "deploy_heketi_pod.results.results[0]['items'] | count > 0"
  116. # deploy-heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  117. - "deploy_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 > 0"
  118. - name: Check for existing heketi pod
  119. oc_obj:
  120. namespace: "{{ glusterfs_namespace }}"
  121. state: list
  122. kind: pod
  123. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  124. register: heketi_pod
  125. when: glusterfs_heketi_is_native
  126. - name: Check if need to deploy heketi
  127. set_fact:
  128. glusterfs_heketi_is_missing: False
  129. when:
  130. - "glusterfs_heketi_is_native"
  131. - "heketi_pod.results.results[0]['items'] | count > 0"
  132. # heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  133. - "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 > 0"
  134. - name: Generate topology file
  135. template:
  136. src: "topology.json.j2"
  137. dest: "{{ mktemp.stdout }}/topology.json"
  138. when:
  139. - glusterfs_heketi_topology_load
  140. - name: Generate heketi config file
  141. template:
  142. src: "heketi.json.j2"
  143. dest: "{{ mktemp.stdout }}/heketi.json"
  144. when:
  145. - glusterfs_heketi_is_native
  146. - name: Get heketi admin secret
  147. oc_secret:
  148. state: list
  149. namespace: "{{ glusterfs_namespace }}"
  150. name: "heketi-{{ glusterfs_name }}-admin-secret"
  151. decode: True
  152. register: glusterfs_heketi_admin_secret
  153. - name: Set heketi admin key
  154. set_fact:
  155. glusterfs_heketi_admin_key: "{{ glusterfs_heketi_admin_secret.results.decoded.key }}"
  156. when:
  157. - glusterfs_heketi_is_native
  158. - glusterfs_heketi_admin_secret.results.results[0]
  159. - name: Generate heketi admin key
  160. set_fact:
  161. glusterfs_heketi_admin_key: "{{ 32 | lib_utils_oo_generate_secret }}"
  162. when:
  163. - glusterfs_heketi_is_native
  164. - glusterfs_heketi_admin_key is undefined
  165. - name: Generate heketi user key
  166. set_fact:
  167. glusterfs_heketi_user_key: "{{ 32 | lib_utils_oo_generate_secret }}"
  168. until:
  169. - glusterfs_heketi_user_key is defined
  170. - glusterfs_heketi_user_key != glusterfs_heketi_admin_key
  171. delay: 1
  172. retries: 10
  173. when:
  174. - glusterfs_heketi_is_native
  175. - glusterfs_heketi_user_key is undefined
  176. - name: Copy heketi private key
  177. copy:
  178. src: "{{ glusterfs_heketi_ssh_keyfile | default(omit) }}"
  179. content: "{{ '' if glusterfs_heketi_ssh_keyfile is undefined else omit }}"
  180. dest: "{{ mktemp.stdout }}/private_key"
  181. - name: Create heketi config secret
  182. oc_secret:
  183. namespace: "{{ glusterfs_namespace }}"
  184. state: present
  185. name: "heketi-{{ glusterfs_name }}-config-secret"
  186. force: True
  187. files:
  188. - name: heketi.json
  189. path: "{{ mktemp.stdout }}/heketi.json"
  190. - name: private_key
  191. path: "{{ mktemp.stdout }}/private_key"
  192. when:
  193. - glusterfs_heketi_is_native
  194. - include_tasks: heketi_deploy_part1.yml
  195. when:
  196. - glusterfs_heketi_is_native
  197. - glusterfs_heketi_deploy_is_missing
  198. - glusterfs_heketi_is_missing
  199. - name: Wait for deploy-heketi pod
  200. oc_obj:
  201. namespace: "{{ glusterfs_namespace }}"
  202. kind: pod
  203. state: list
  204. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  205. register: deploy_heketi_pod
  206. until:
  207. - "deploy_heketi_pod.results.results[0]['items'] | count > 0"
  208. # Pod's 'Ready' status must be True
  209. - "deploy_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"
  210. delay: 10
  211. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  212. when:
  213. - glusterfs_heketi_is_native
  214. - not glusterfs_heketi_deploy_is_missing
  215. - glusterfs_heketi_is_missing
  216. - name: Set heketi-cli command
  217. set_fact:
  218. glusterfs_heketi_client: "{% if glusterfs_heketi_is_native %}{{ openshift_client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig rsh --namespace={{ glusterfs_namespace }} {%if not glusterfs_heketi_is_missing %}{{ heketi_pod.results.results[0]['items'][0]['metadata']['name'] }}{% else %}{{ deploy_heketi_pod.results.results[0]['items'][0]['metadata']['name'] }}{% endif %} {% 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 %}"
  219. - name: Verify heketi service
  220. command: "{{ glusterfs_heketi_client }} cluster list"
  221. changed_when: False
  222. - name: Place heketi topology on heketi Pod
  223. shell: "{{ openshift_client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig exec --namespace={{ glusterfs_namespace }} -i {%if not glusterfs_heketi_is_missing %}{{ heketi_pod.results.results[0]['items'][0]['metadata']['name'] }}{% else %}{{ deploy_heketi_pod.results.results[0]['items'][0]['metadata']['name'] }}{% endif %} -- bash -c 'mkdir -p {{ mktemp.stdout }} && cat > {{ mktemp.stdout }}/topology.json' < {{ mktemp.stdout }}/topology.json"
  224. when:
  225. - glusterfs_heketi_is_native
  226. - glusterfs_heketi_topology_load
  227. - name: Load heketi topology
  228. command: "{{ glusterfs_heketi_client }} topology load --json={{ mktemp.stdout }}/topology.json 2>&1"
  229. register: topology_load
  230. failed_when: "topology_load.rc != 0 or 'Unable' in topology_load.stdout"
  231. when:
  232. - glusterfs_heketi_topology_load
  233. - include_tasks: heketi_deploy_part2.yml
  234. when:
  235. - glusterfs_heketi_is_native
  236. - glusterfs_heketi_is_missing
  237. - name: Check if gluster-s3 can't be deployed
  238. set_fact:
  239. glusterfs_s3_deploy: False
  240. when:
  241. - "glusterfs_s3_account is not defined or glusterfs_s3_user is not defined or glusterfs_s3_password is not defined"
  242. - block:
  243. - name: Create heketi secret
  244. oc_secret:
  245. namespace: "{{ glusterfs_namespace }}"
  246. state: present
  247. name: "heketi-{{ glusterfs_name }}-admin-secret"
  248. type: "kubernetes.io/glusterfs"
  249. force: True
  250. contents:
  251. - path: key
  252. data: "{{ glusterfs_heketi_admin_key }}"
  253. when:
  254. - glusterfs_heketi_admin_key is defined
  255. - name: Generate GlusterFS StorageClass file
  256. template:
  257. src: "glusterfs-storageclass.yml.j2"
  258. dest: "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  259. - name: Create GlusterFS StorageClass
  260. oc_obj:
  261. state: present
  262. kind: storageclass
  263. name: "glusterfs-{{ glusterfs_name }}"
  264. files:
  265. - "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  266. when:
  267. - glusterfs_storageclass or glusterfs_s3_deploy
  268. - include_tasks: glusterblock_deploy.yml
  269. when:
  270. - glusterfs_block_deploy
  271. #TODO: Remove this when multipathd will be available on atomic
  272. - not openshift_is_atomic | bool
  273. - block:
  274. - name: Create heketi block secret
  275. oc_secret:
  276. namespace: "{{ glusterfs_namespace }}"
  277. state: present
  278. name: "heketi-{{ glusterfs_name }}-admin-secret-block"
  279. type: "gluster.org/glusterblock"
  280. force: True
  281. contents:
  282. - path: key
  283. data: "{{ glusterfs_heketi_admin_key }}"
  284. when: glusterfs_heketi_admin_key is defined
  285. - name: Generate Gluster Block StorageClass file
  286. template:
  287. src: "gluster-block-storageclass.yml.j2"
  288. dest: "{{ mktemp.stdout }}/gluster-block-storageclass.yml"
  289. - name: Create Gluster Block StorageClass
  290. oc_obj:
  291. state: present
  292. kind: storageclass
  293. name: "glusterfs-{{ glusterfs_name }}-block"
  294. files:
  295. - "{{ mktemp.stdout }}/gluster-block-storageclass.yml"
  296. when: glusterfs_block_storageclass
  297. - include_tasks: gluster_s3_deploy.yml
  298. when: glusterfs_s3_deploy