glusterfs_common.yml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  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: "glusterfs_heketi_user_key != glusterfs_heketi_admin_key"
  169. delay: 1
  170. retries: 10
  171. when:
  172. - glusterfs_heketi_is_native
  173. - glusterfs_heketi_user_key is undefined
  174. - name: Copy heketi private key
  175. copy:
  176. src: "{{ glusterfs_heketi_ssh_keyfile | default(omit) }}"
  177. content: "{{ '' if glusterfs_heketi_ssh_keyfile is undefined else omit }}"
  178. dest: "{{ mktemp.stdout }}/private_key"
  179. - name: Create heketi config secret
  180. oc_secret:
  181. namespace: "{{ glusterfs_namespace }}"
  182. state: present
  183. name: "heketi-{{ glusterfs_name }}-config-secret"
  184. force: True
  185. files:
  186. - name: heketi.json
  187. path: "{{ mktemp.stdout }}/heketi.json"
  188. - name: private_key
  189. path: "{{ mktemp.stdout }}/private_key"
  190. when:
  191. - glusterfs_heketi_is_native
  192. - include_tasks: heketi_deploy_part1.yml
  193. when:
  194. - glusterfs_heketi_is_native
  195. - glusterfs_heketi_deploy_is_missing
  196. - glusterfs_heketi_is_missing
  197. - name: Wait for deploy-heketi pod
  198. oc_obj:
  199. namespace: "{{ glusterfs_namespace }}"
  200. kind: pod
  201. state: list
  202. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  203. register: deploy_heketi_pod
  204. until:
  205. - "deploy_heketi_pod.results.results[0]['items'] | count > 0"
  206. # Pod's 'Ready' status must be True
  207. - "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"
  208. delay: 10
  209. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  210. when:
  211. - glusterfs_heketi_is_native
  212. - not glusterfs_heketi_deploy_is_missing
  213. - glusterfs_heketi_is_missing
  214. - name: Set heketi-cli command
  215. set_fact:
  216. 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 %}"
  217. - name: Verify heketi service
  218. command: "{{ glusterfs_heketi_client }} cluster list"
  219. changed_when: False
  220. - name: Place heketi topology on heketi Pod
  221. 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"
  222. when:
  223. - glusterfs_heketi_is_native
  224. - glusterfs_heketi_topology_load
  225. - name: Load heketi topology
  226. command: "{{ glusterfs_heketi_client }} topology load --json={{ mktemp.stdout }}/topology.json 2>&1"
  227. register: topology_load
  228. failed_when: "topology_load.rc != 0 or 'Unable' in topology_load.stdout"
  229. when:
  230. - glusterfs_heketi_topology_load
  231. - include_tasks: heketi_deploy_part2.yml
  232. when:
  233. - glusterfs_heketi_is_native
  234. - glusterfs_heketi_is_missing
  235. - name: Check if gluster-s3 can't be deployed
  236. set_fact:
  237. glusterfs_s3_deploy: False
  238. when:
  239. - "glusterfs_s3_account is not defined or glusterfs_s3_user is not defined or glusterfs_s3_password is not defined"
  240. - block:
  241. - name: Create heketi secret
  242. oc_secret:
  243. namespace: "{{ glusterfs_namespace }}"
  244. state: present
  245. name: "heketi-{{ glusterfs_name }}-admin-secret"
  246. type: "kubernetes.io/glusterfs"
  247. force: True
  248. contents:
  249. - path: key
  250. data: "{{ glusterfs_heketi_admin_key }}"
  251. when:
  252. - glusterfs_heketi_admin_key is defined
  253. - name: Get heketi route
  254. oc_obj:
  255. namespace: "{{ glusterfs_namespace }}"
  256. kind: route
  257. state: list
  258. name: "heketi-{{ glusterfs_name }}"
  259. register: heketi_route
  260. when:
  261. - glusterfs_heketi_is_native
  262. - name: Determine StorageClass heketi URL
  263. set_fact:
  264. glusterfs_heketi_route: "{{ heketi_route.results.results[0]['spec']['host'] }}"
  265. when:
  266. - glusterfs_heketi_is_native
  267. - name: Generate GlusterFS StorageClass file
  268. template:
  269. src: "glusterfs-storageclass.yml.j2"
  270. dest: "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  271. - name: Create GlusterFS StorageClass
  272. oc_obj:
  273. state: present
  274. kind: storageclass
  275. name: "glusterfs-{{ glusterfs_name }}"
  276. files:
  277. - "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  278. when:
  279. - glusterfs_storageclass or glusterfs_s3_deploy
  280. - include_tasks: glusterblock_deploy.yml
  281. when:
  282. - glusterfs_block_deploy
  283. #TODO: Remove this when multipathd will be available on atomic
  284. - not openshift_is_atomic | bool
  285. - block:
  286. - name: Create heketi block secret
  287. oc_secret:
  288. namespace: "{{ glusterfs_namespace }}"
  289. state: present
  290. name: "heketi-{{ glusterfs_name }}-admin-secret-block"
  291. type: "gluster.org/glusterblock"
  292. force: True
  293. contents:
  294. - path: key
  295. data: "{{ glusterfs_heketi_admin_key }}"
  296. when: glusterfs_heketi_admin_key is defined
  297. - name: Get heketi route
  298. oc_obj:
  299. namespace: "{{ glusterfs_namespace }}"
  300. kind: route
  301. state: list
  302. name: "heketi-{{ glusterfs_name }}"
  303. register: heketi_route
  304. when:
  305. - glusterfs_heketi_is_native
  306. - name: Determine StorageClass heketi URL
  307. set_fact:
  308. glusterfs_heketi_route: "{{ heketi_route.results.results[0]['spec']['host'] }}"
  309. when:
  310. - glusterfs_heketi_is_native
  311. - name: Generate Gluster Block StorageClass file
  312. template:
  313. src: "gluster-block-storageclass.yml.j2"
  314. dest: "{{ mktemp.stdout }}/gluster-block-storageclass.yml"
  315. - name: Create Gluster Block StorageClass
  316. oc_obj:
  317. state: present
  318. kind: storageclass
  319. name: "glusterfs-{{ glusterfs_name }}-block"
  320. files:
  321. - "{{ mktemp.stdout }}/gluster-block-storageclass.yml"
  322. when: glusterfs_block_storageclass
  323. - include_tasks: gluster_s3_deploy.yml
  324. when: glusterfs_s3_deploy