glusterfs_common.yml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  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: "{{ openshift.common.examples_content_version }}/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: "{{ openshift.common.examples_content_version }}/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_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 }} 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 }} 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. - name: Load heketi topology
  225. command: "{{ glusterfs_heketi_client }} topology load --json={{ mktemp.stdout }}/topology.json 2>&1"
  226. register: topology_load
  227. failed_when: "topology_load.rc != 0 or 'Unable' in topology_load.stdout"
  228. when:
  229. - glusterfs_heketi_topology_load
  230. - include_tasks: heketi_deploy_part2.yml
  231. when:
  232. - glusterfs_heketi_is_native
  233. - glusterfs_heketi_is_missing
  234. - name: Check if gluster-s3 can't be deployed
  235. set_fact:
  236. glusterfs_s3_deploy: False
  237. when:
  238. - "glusterfs_s3_account is not defined or glusterfs_s3_user is not defined or glusterfs_s3_password is not defined"
  239. - block:
  240. - name: Create heketi secret
  241. oc_secret:
  242. namespace: "{{ glusterfs_namespace }}"
  243. state: present
  244. name: "heketi-{{ glusterfs_name }}-admin-secret"
  245. type: "kubernetes.io/glusterfs"
  246. force: True
  247. contents:
  248. - path: key
  249. data: "{{ glusterfs_heketi_admin_key }}"
  250. when:
  251. - glusterfs_heketi_admin_key is defined
  252. - name: Get heketi route
  253. oc_obj:
  254. namespace: "{{ glusterfs_namespace }}"
  255. kind: route
  256. state: list
  257. name: "heketi-{{ glusterfs_name }}"
  258. register: heketi_route
  259. when:
  260. - glusterfs_heketi_is_native
  261. - name: Determine StorageClass heketi URL
  262. set_fact:
  263. glusterfs_heketi_route: "{{ heketi_route.results.results[0]['spec']['host'] }}"
  264. when:
  265. - glusterfs_heketi_is_native
  266. - name: Generate GlusterFS StorageClass file
  267. template:
  268. src: "{{ openshift.common.examples_content_version }}/glusterfs-storageclass.yml.j2"
  269. dest: "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  270. - name: Create GlusterFS StorageClass
  271. oc_obj:
  272. state: present
  273. kind: storageclass
  274. name: "glusterfs-{{ glusterfs_name }}"
  275. files:
  276. - "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  277. when:
  278. - glusterfs_storageclass or glusterfs_s3_deploy
  279. - include_tasks: glusterblock_deploy.yml
  280. when:
  281. - glusterfs_block_deploy
  282. #TODO: Remove this when multipathd will be available on atomic
  283. - not openshift_is_atomic | bool
  284. - block:
  285. - name: Create heketi block secret
  286. oc_secret:
  287. namespace: "{{ glusterfs_namespace }}"
  288. state: present
  289. name: "heketi-{{ glusterfs_name }}-admin-secret-block"
  290. type: "gluster.org/glusterblock"
  291. force: True
  292. contents:
  293. - path: key
  294. data: "{{ glusterfs_heketi_admin_key }}"
  295. when: glusterfs_heketi_admin_key is defined
  296. - name: Generate Gluster Block StorageClass file
  297. template:
  298. src: "{{ openshift.common.examples_content_version }}/gluster-block-storageclass.yml.j2"
  299. dest: "{{ mktemp.stdout }}/gluster-block-storageclass.yml"
  300. - name: Create Gluster Block StorageClass
  301. oc_obj:
  302. state: present
  303. kind: storageclass
  304. name: "glusterfs-{{ glusterfs_name }}-block"
  305. files:
  306. - "{{ mktemp.stdout }}/gluster-block-storageclass.yml"
  307. when: glusterfs_block_storageclass
  308. - include_tasks: gluster_s3_deploy.yml
  309. when: glusterfs_s3_deploy