glusterfs_common.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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. node_selector: "{% if glusterfs_use_default_selector %}{{ omit }}{% endif %}"
  17. when: glusterfs_is_native or glusterfs_heketi_is_native or glusterfs_storageclass
  18. - name: Add namespace service accounts to privileged SCC
  19. oc_adm_policy_user:
  20. user: "system:serviceaccount:{{ glusterfs_namespace }}:{{ item }}"
  21. resource_kind: scc
  22. resource_name: privileged
  23. state: present
  24. with_items:
  25. - 'default'
  26. - 'router'
  27. when: glusterfs_is_native or glusterfs_heketi_is_native
  28. - name: Delete pre-existing heketi resources
  29. oc_obj:
  30. namespace: "{{ glusterfs_namespace }}"
  31. kind: "{{ item.kind }}"
  32. name: "{{ item.name | default(omit) }}"
  33. selector: "{{ item.selector | default(omit) }}"
  34. state: absent
  35. with_items:
  36. - kind: "template,route,service,dc,jobs,secret"
  37. selector: "deploy-heketi"
  38. - kind: "svc"
  39. name: "heketi-storage-endpoints"
  40. - kind: "secret"
  41. name: "heketi-{{ glusterfs_name | default }}-topology-secret"
  42. - kind: "secret"
  43. name: "heketi-{{ glusterfs_name | default }}-config-secret"
  44. - kind: "template,route,service,dc"
  45. name: "heketi-{{ glusterfs_name | default }}"
  46. - kind: "svc"
  47. name: "heketi-db-{{ glusterfs_name | default }}-endpoints"
  48. - kind: "sa"
  49. name: "heketi-{{ glusterfs_name | default }}-service-account"
  50. - kind: "secret"
  51. name: "heketi-{{ glusterfs_name | default }}-admin-secret"
  52. failed_when: False
  53. when: glusterfs_heketi_wipe
  54. - name: Wait for deploy-heketi pods to terminate
  55. oc_obj:
  56. namespace: "{{ glusterfs_namespace }}"
  57. kind: pod
  58. state: list
  59. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  60. register: deploy_heketi_pod
  61. until: "deploy_heketi_pod.results.results[0]['items'] | count == 0"
  62. delay: 10
  63. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  64. when: glusterfs_heketi_wipe
  65. - name: Wait for heketi pods to terminate
  66. oc_obj:
  67. namespace: "{{ glusterfs_namespace }}"
  68. kind: pod
  69. state: list
  70. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  71. register: heketi_pod
  72. until: "heketi_pod.results.results[0]['items'] | count == 0"
  73. delay: 10
  74. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  75. when: glusterfs_heketi_wipe
  76. - include: glusterfs_deploy.yml
  77. when: glusterfs_is_native
  78. - name: Create heketi service account
  79. oc_serviceaccount:
  80. namespace: "{{ glusterfs_namespace }}"
  81. name: "heketi-{{ glusterfs_name }}-service-account"
  82. state: present
  83. when: glusterfs_heketi_is_native
  84. - name: Add heketi service account to privileged SCC
  85. oc_adm_policy_user:
  86. namespace: "{{ glusterfs_namespace }}"
  87. user: "system:serviceaccount:{{ glusterfs_namespace }}:heketi-{{ glusterfs_name }}-service-account"
  88. resource_kind: scc
  89. resource_name: privileged
  90. state: present
  91. when: glusterfs_heketi_is_native
  92. - name: Allow heketi service account to view/edit pods
  93. oc_adm_policy_user:
  94. namespace: "{{ glusterfs_namespace }}"
  95. user: "system:serviceaccount:{{ glusterfs_namespace }}:heketi-{{ glusterfs_name }}-service-account"
  96. resource_kind: role
  97. resource_name: edit
  98. state: present
  99. when: glusterfs_heketi_is_native
  100. - name: Check for existing deploy-heketi pod
  101. oc_obj:
  102. namespace: "{{ glusterfs_namespace }}"
  103. state: list
  104. kind: pod
  105. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  106. register: deploy_heketi_pod
  107. when: glusterfs_heketi_is_native
  108. - name: Check if need to deploy deploy-heketi
  109. set_fact:
  110. glusterfs_heketi_deploy_is_missing: False
  111. when:
  112. - "glusterfs_heketi_is_native"
  113. - "deploy_heketi_pod.results.results[0]['items'] | count > 0"
  114. # deploy-heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  115. - "deploy_heketi_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count > 0"
  116. - name: Check for existing heketi pod
  117. oc_obj:
  118. namespace: "{{ glusterfs_namespace }}"
  119. state: list
  120. kind: pod
  121. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  122. register: heketi_pod
  123. when: glusterfs_heketi_is_native
  124. - name: Check if need to deploy heketi
  125. set_fact:
  126. glusterfs_heketi_is_missing: False
  127. when:
  128. - "glusterfs_heketi_is_native"
  129. - "heketi_pod.results.results[0]['items'] | count > 0"
  130. # heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  131. - "heketi_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count > 0"
  132. - name: Generate topology file
  133. template:
  134. src: "{{ openshift.common.examples_content_version }}/topology.json.j2"
  135. dest: "{{ mktemp.stdout }}/topology.json"
  136. when:
  137. - glusterfs_heketi_topology_load
  138. - name: Generate heketi config file
  139. template:
  140. src: "{{ openshift.common.examples_content_version }}/heketi.json.j2"
  141. dest: "{{ mktemp.stdout }}/heketi.json"
  142. when:
  143. - glusterfs_heketi_is_native
  144. - name: Get heketi admin secret
  145. oc_secret:
  146. state: list
  147. namespace: "{{ glusterfs_namespace }}"
  148. name: "heketi-{{ glusterfs_name }}-admin-secret"
  149. decode: True
  150. register: glusterfs_heketi_admin_secret
  151. - name: Set heketi admin key
  152. set_fact:
  153. glusterfs_heketi_admin_key: "{{ glusterfs_heketi_admin_secret.results.decoded.key }}"
  154. when:
  155. - glusterfs_is_native
  156. - glusterfs_heketi_admin_secret.results.results[0]
  157. - name: Generate heketi admin key
  158. set_fact:
  159. glusterfs_heketi_admin_key: "{{ 32 | oo_generate_secret }}"
  160. when:
  161. - glusterfs_heketi_is_native
  162. - glusterfs_heketi_admin_key is undefined
  163. - name: Generate heketi user key
  164. set_fact:
  165. glusterfs_heketi_user_key: "{{ 32 | oo_generate_secret }}"
  166. until: "glusterfs_heketi_user_key != glusterfs_heketi_admin_key"
  167. delay: 1
  168. retries: 10
  169. when:
  170. - glusterfs_heketi_is_native
  171. - glusterfs_heketi_user_key is undefined
  172. - name: Copy heketi private key
  173. copy:
  174. src: "{{ glusterfs_heketi_ssh_keyfile | default(omit) }}"
  175. content: "{{ '' if glusterfs_heketi_ssh_keyfile is undefined else omit }}"
  176. dest: "{{ mktemp.stdout }}/private_key"
  177. - name: Create heketi config secret
  178. oc_secret:
  179. namespace: "{{ glusterfs_namespace }}"
  180. state: present
  181. name: "heketi-{{ glusterfs_name }}-config-secret"
  182. force: True
  183. files:
  184. - name: heketi.json
  185. path: "{{ mktemp.stdout }}/heketi.json"
  186. - name: private_key
  187. path: "{{ mktemp.stdout }}/private_key"
  188. when:
  189. - glusterfs_heketi_is_native
  190. - include: heketi_deploy_part1.yml
  191. when:
  192. - glusterfs_heketi_is_native
  193. - glusterfs_heketi_deploy_is_missing
  194. - glusterfs_heketi_is_missing
  195. - name: Wait for deploy-heketi pod
  196. oc_obj:
  197. namespace: "{{ glusterfs_namespace }}"
  198. kind: pod
  199. state: list
  200. selector: "glusterfs=deploy-heketi-{{ glusterfs_name }}-pod"
  201. register: deploy_heketi_pod
  202. until:
  203. - "deploy_heketi_pod.results.results[0]['items'] | count > 0"
  204. # Pod's 'Ready' status must be True
  205. - "deploy_heketi_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == 1"
  206. delay: 10
  207. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  208. when:
  209. - glusterfs_heketi_is_native
  210. - not glusterfs_heketi_deploy_is_missing
  211. - glusterfs_heketi_is_missing
  212. - name: Set heketi-cli command
  213. set_fact:
  214. glusterfs_heketi_client: "{% if glusterfs_heketi_is_native %}{{ openshift.common.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 %}"
  215. - name: Verify heketi service
  216. command: "{{ glusterfs_heketi_client }} cluster list"
  217. changed_when: False
  218. - name: Place heketi topology on heketi Pod
  219. shell: "{{ openshift.common.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"
  220. when:
  221. - glusterfs_heketi_is_native
  222. - name: Load heketi topology
  223. command: "{{ glusterfs_heketi_client }} topology load --json={{ mktemp.stdout }}/topology.json 2>&1"
  224. register: topology_load
  225. failed_when: "topology_load.rc != 0 or 'Unable' in topology_load.stdout"
  226. when:
  227. - glusterfs_heketi_topology_load
  228. - include: heketi_deploy_part2.yml
  229. when:
  230. - glusterfs_heketi_is_native
  231. - glusterfs_heketi_is_missing
  232. - name: Create heketi secret
  233. oc_secret:
  234. namespace: "{{ glusterfs_namespace }}"
  235. state: present
  236. name: "heketi-{{ glusterfs_name }}-admin-secret"
  237. type: "kubernetes.io/glusterfs"
  238. force: True
  239. contents:
  240. - path: key
  241. data: "{{ glusterfs_heketi_admin_key }}"
  242. when:
  243. - glusterfs_storageclass
  244. - glusterfs_heketi_admin_key is defined
  245. - name: Get heketi route
  246. oc_obj:
  247. namespace: "{{ glusterfs_namespace }}"
  248. kind: route
  249. state: list
  250. name: "heketi-{{ glusterfs_name }}"
  251. register: heketi_route
  252. when:
  253. - glusterfs_storageclass
  254. - glusterfs_heketi_is_native
  255. - name: Determine StorageClass heketi URL
  256. set_fact:
  257. glusterfs_heketi_route: "{{ heketi_route.results.results[0]['spec']['host'] }}"
  258. when:
  259. - glusterfs_storageclass
  260. - glusterfs_heketi_is_native
  261. - name: Generate GlusterFS StorageClass file
  262. template:
  263. src: "{{ openshift.common.examples_content_version }}/glusterfs-storageclass.yml.j2"
  264. dest: "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  265. when:
  266. - glusterfs_storageclass
  267. - name: Create GlusterFS StorageClass
  268. oc_obj:
  269. state: present
  270. kind: storageclass
  271. name: "glusterfs-{{ glusterfs_name }}"
  272. files:
  273. - "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  274. when:
  275. - glusterfs_storageclass