main.yml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. ---
  2. - name: Create temp directory for doing work in
  3. command: mktemp -d /tmp/openshift-glusterfs-ansible-XXXXXX
  4. register: mktemp
  5. changed_when: False
  6. check_mode: no
  7. - name: Verify target namespace exists
  8. oc_project:
  9. state: present
  10. name: "{{ openshift_storage_glusterfs_namespace }}"
  11. when: openshift_storage_glusterfs_is_native or openshift_storage_glusterfs_heketi_is_native
  12. - include: glusterfs_deploy.yml
  13. when: openshift_storage_glusterfs_is_native
  14. - name: Make sure heketi-client is installed
  15. package: name=heketi-client state=present
  16. - name: Delete pre-existing heketi resources
  17. oc_obj:
  18. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  19. kind: "{{ item.kind }}"
  20. name: "{{ item.name | default(omit) }}"
  21. selector: "{{ item.selector | default(omit) }}"
  22. state: absent
  23. with_items:
  24. - kind: "template,route,service,jobs,dc,secret"
  25. selector: "deploy-heketi"
  26. - kind: "template,route,dc,service"
  27. name: "heketi"
  28. - kind: "svc,ep"
  29. name: "heketi-storage-endpoints"
  30. - kind: "sa"
  31. name: "heketi-service-account"
  32. failed_when: False
  33. when: openshift_storage_glusterfs_heketi_wipe
  34. - name: Wait for deploy-heketi pods to terminate
  35. oc_obj:
  36. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  37. kind: pod
  38. state: list
  39. selector: "glusterfs=deploy-heketi-pod"
  40. register: heketi_pod
  41. until: "heketi_pod.results.results[0]['items'] | count == 0"
  42. delay: 10
  43. retries: "{{ (openshift_storage_glusterfs_timeout / 10) | int }}"
  44. when: openshift_storage_glusterfs_heketi_wipe
  45. - name: Wait for heketi pods to terminate
  46. oc_obj:
  47. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  48. kind: pod
  49. state: list
  50. selector: "glusterfs=heketi-pod"
  51. register: heketi_pod
  52. until: "heketi_pod.results.results[0]['items'] | count == 0"
  53. delay: 10
  54. retries: "{{ (openshift_storage_glusterfs_timeout / 10) | int }}"
  55. when: openshift_storage_glusterfs_heketi_wipe
  56. - name: Create heketi service account
  57. oc_serviceaccount:
  58. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  59. name: heketi-service-account
  60. state: present
  61. when: openshift_storage_glusterfs_heketi_is_native
  62. - name: Add heketi service account to privileged SCC
  63. oc_adm_policy_user:
  64. user: "system:serviceaccount:{{ openshift_storage_glusterfs_namespace }}:heketi-service-account"
  65. resource_kind: scc
  66. resource_name: privileged
  67. state: present
  68. when: openshift_storage_glusterfs_heketi_is_native
  69. - name: Allow heketi service account to view/edit pods
  70. oc_adm_policy_user:
  71. user: "system:serviceaccount:{{ openshift_storage_glusterfs_namespace }}:heketi-service-account"
  72. resource_kind: role
  73. resource_name: edit
  74. state: present
  75. when: openshift_storage_glusterfs_heketi_is_native
  76. - name: Check for existing deploy-heketi pod
  77. oc_obj:
  78. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  79. state: list
  80. kind: pod
  81. selector: "glusterfs=deploy-heketi-pod,deploy-heketi=support"
  82. register: heketi_pod
  83. when: openshift_storage_glusterfs_heketi_is_native
  84. - name: Check if need to deploy deploy-heketi
  85. set_fact:
  86. openshift_storage_glusterfs_heketi_deploy_is_missing: False
  87. when:
  88. - "openshift_storage_glusterfs_heketi_is_native"
  89. - "heketi_pod.results.results[0]['items'] | count > 0"
  90. # deploy-heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  91. - "heketi_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count > 0"
  92. - name: Check for existing heketi pod
  93. oc_obj:
  94. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  95. state: list
  96. kind: pod
  97. selector: "glusterfs=heketi-pod"
  98. register: heketi_pod
  99. when: openshift_storage_glusterfs_heketi_is_native
  100. - name: Check if need to deploy heketi
  101. set_fact:
  102. openshift_storage_glusterfs_heketi_is_missing: False
  103. when:
  104. - "openshift_storage_glusterfs_heketi_is_native"
  105. - "heketi_pod.results.results[0]['items'] | count > 0"
  106. # heketi is not missing when there are one or more pods with matching labels whose 'Ready' status is True
  107. - "heketi_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count > 0"
  108. - include: heketi_deploy_part1.yml
  109. when:
  110. - openshift_storage_glusterfs_heketi_is_native
  111. - openshift_storage_glusterfs_heketi_deploy_is_missing
  112. - openshift_storage_glusterfs_heketi_is_missing
  113. - name: Determine heketi URL
  114. oc_obj:
  115. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  116. state: list
  117. kind: ep
  118. selector: "glusterfs in (deploy-heketi-service, heketi-service)"
  119. register: heketi_url
  120. until:
  121. - "heketi_url.results.results[0]['items'][0].subsets[0].addresses[0].ip != ''"
  122. - "heketi_url.results.results[0]['items'][0].subsets[0].ports[0].port != ''"
  123. delay: 10
  124. retries: "{{ (openshift_storage_glusterfs_timeout / 10) | int }}"
  125. when:
  126. - openshift_storage_glusterfs_heketi_is_native
  127. - openshift_storage_glusterfs_heketi_url is undefined
  128. - name: Set heketi URL
  129. set_fact:
  130. openshift_storage_glusterfs_heketi_url: "{{ heketi_url.results.results[0]['items'][0].subsets[0].addresses[0].ip }}:{{ heketi_url.results.results[0]['items'][0].subsets[0].ports[0].port }}"
  131. when:
  132. - openshift_storage_glusterfs_heketi_is_native
  133. - openshift_storage_glusterfs_heketi_url is undefined
  134. - name: Verify heketi service
  135. command: "heketi-cli -s http://{{ openshift_storage_glusterfs_heketi_url }} --user admin --secret '{{ openshift_storage_glusterfs_heketi_admin_key }}' cluster list"
  136. changed_when: False
  137. - name: Generate topology file
  138. template:
  139. src: "{{ openshift.common.examples_content_version }}/topology.json.j2"
  140. dest: "{{ mktemp.stdout }}/topology.json"
  141. when:
  142. - openshift_storage_glusterfs_is_native
  143. - openshift_storage_glusterfs_heketi_topology_load
  144. - name: Load heketi topology
  145. command: "heketi-cli -s http://{{ openshift_storage_glusterfs_heketi_url }} --user admin --secret '{{ openshift_storage_glusterfs_heketi_admin_key }}' topology load --json={{ mktemp.stdout }}/topology.json 2>&1"
  146. register: topology_load
  147. failed_when: topology_load.rc != 0 or 'Unable' in topology_load.stdout
  148. when:
  149. - openshift_storage_glusterfs_is_native
  150. - openshift_storage_glusterfs_heketi_topology_load
  151. - include: heketi_deploy_part2.yml
  152. when: openshift_storage_glusterfs_heketi_is_native and openshift_storage_glusterfs_heketi_is_missing
  153. - include: glusterfs_registry.yml
  154. when: openshift.hosted.registry.storage.kind == 'glusterfs'
  155. - name: Delete temp directory
  156. file:
  157. name: "{{ mktemp.stdout }}"
  158. state: absent
  159. changed_when: False
  160. check_mode: no