gluster_s3_deploy.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. ---
  2. - name: Delete pre-existing gluster-s3 resources
  3. oc_obj:
  4. namespace: "{{ glusterfs_namespace }}"
  5. kind: "{{ item.kind }}"
  6. name: "{{ item.name | default(omit) }}"
  7. selector: "{{ item.selector | default(omit) }}"
  8. state: absent
  9. with_items:
  10. - kind: "all,svc,deploy,secret,sc,pvc"
  11. selector: "gluster-s3"
  12. failed_when: False
  13. when: glusterfs_wipe
  14. - name: Wait for gluster-s3 pods to terminate
  15. oc_obj:
  16. namespace: "{{ glusterfs_namespace }}"
  17. kind: pod
  18. state: list
  19. selector: "glusterfs=s3-{{ glusterfs_name }}-provisioner-pod"
  20. register: gluster_s3_pod
  21. until: "gluster_s3_pod.results.results[0]['items'] | count == 0"
  22. delay: 10
  23. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  24. when: glusterfs_wipe
  25. - name: Create heketi secret
  26. oc_secret:
  27. namespace: "{{ glusterfs_namespace }}"
  28. state: present
  29. name: "heketi-{{ glusterfs_name }}-admin-secret"
  30. type: "kubernetes.io/glusterfs"
  31. force: True
  32. contents:
  33. - path: key
  34. data: "{{ glusterfs_heketi_admin_key }}"
  35. when:
  36. - glusterfs_heketi_admin_key is defined
  37. - name: Get heketi Endpoints
  38. oc_obj:
  39. namespace: "{{ glusterfs_namespace }}"
  40. kind: ep
  41. state: list
  42. name: "heketi-{{ glusterfs_name }}"
  43. register: heketi_endpoints
  44. when:
  45. - glusterfs_heketi_is_native
  46. - glusterfs_heketi_url is not defined
  47. - name: Determine StorageClass heketi URL
  48. set_fact:
  49. glusterfs_heketi_url: "{{ heketi_endpoints.results.results[0]['subsets'][0]['addresses'][0]['ip'] }}"
  50. glusterfs_heketi_port: "{{ heketi_endpoints.results.results[0]['subsets'][0]['ports'][0]['port'] }}"
  51. when:
  52. - glusterfs_heketi_is_native
  53. - glusterfs_heketi_url is not defined
  54. - name: Generate GlusterFS StorageClass for S3 file
  55. template:
  56. src: "{{ openshift_examples_content_version }}/gluster-s3-storageclass.yml.j2"
  57. dest: "{{ mktemp.stdout }}/gluster-s3-storageclass.yml"
  58. - name: Create GlusterFS StorageClass for S3
  59. oc_obj:
  60. state: present
  61. kind: storageclass
  62. name: "glusterfs-{{ glusterfs_name }}-s3"
  63. files:
  64. - "{{ mktemp.stdout }}/gluster-s3-storageclass.yml"
  65. - name: Copy gluster-s3 PVCs template file
  66. copy:
  67. src: "gluster-s3-pvcs-template.yml"
  68. dest: "{{ mktemp.stdout }}/{{ item }}"
  69. - name: Create gluster-s3 PVCs template
  70. oc_obj:
  71. namespace: "{{ glusterfs_namespace }}"
  72. kind: template
  73. name: "gluster-s3-pvcs"
  74. state: present
  75. files:
  76. - "{{ mktemp.stdout }}/gluster-s3-pvcs-template.yml"
  77. - name: Create gluster-s3 PVCs
  78. oc_process:
  79. namespace: "{{ glusterfs_namespace }}"
  80. template_name: "gluster-s3-pvcs"
  81. create: True
  82. params:
  83. S3_ACCOUNT: "{{ glusterfs_s3_account }}"
  84. PVC: "{{ glusterfs_s3_pvc }}"
  85. PVC_SIZE: "{{ glusterfs_s3_pvc_size }}"
  86. META_PVC: "{{ glusterfs_s3_meta_pvc }}"
  87. META_PVC_SIZE: "{{ glusterfs_s3_meta_pvc_size }}"
  88. CLUSTER_NAME: "{{ glusterfs_name }}"
  89. - name: Wait for gluster-s3 PVCs
  90. oc_obj:
  91. namespace: "{{ glusterfs_namespace }}"
  92. kind: pvc
  93. state: list
  94. selector: "glusterfs=s3-{{ glusterfs_name }}-{{ glusterfs_s3_account }}-storage"
  95. register: gluster_s3_pvcs
  96. until:
  97. - "gluster_s3_pvcs.results.results[0]['items'] | count > 0"
  98. # Pod's 'Bound' status must be True
  99. - "gluster_s3_pvcs.results.results[0]['items'] | lib_utils_oo_collect(attribute='status') | lib_utils_oo_collect(attribute='phase', filters={'phase': 'Bound'}) | list | count == 2"
  100. delay: 10
  101. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  102. - name: Copy gluster-s3 template file
  103. copy:
  104. src: "gluster-s3-template.yml"
  105. dest: "{{ mktemp.stdout }}/{{ item }}"
  106. - name: Create gluster-s3 template
  107. oc_obj:
  108. namespace: "{{ glusterfs_namespace }}"
  109. kind: template
  110. name: "gluster-s3"
  111. state: present
  112. files:
  113. - "{{ mktemp.stdout }}/gluster-s3-template.yml"
  114. - name: Deploy gluster-s3 service
  115. oc_process:
  116. namespace: "{{ glusterfs_namespace }}"
  117. template_name: "gluster-s3"
  118. create: True
  119. params:
  120. IMAGE_NAME: "{{ glusterfs_s3_image }}"
  121. S3_ACCOUNT: "{{ glusterfs_s3_account }}"
  122. S3_USER: "{{ glusterfs_s3_user }}"
  123. S3_PASSWORD: "{{ glusterfs_s3_password }}"
  124. PVC: "{{ glusterfs_s3_pvc }}"
  125. META_PVC: "{{ glusterfs_s3_meta_pvc }}"
  126. CLUSTER_NAME: "{{ glusterfs_name }}"
  127. - name: Wait for gluster-s3 pod
  128. oc_obj:
  129. namespace: "{{ glusterfs_namespace }}"
  130. kind: pod
  131. state: list
  132. selector: "glusterfs=s3-{{ glusterfs_name }}-{{ glusterfs_s3_account }}-pod"
  133. register: gluster_s3_pod
  134. until:
  135. - "gluster_s3_pod.results.results[0]['items'] | count > 0"
  136. # Pod's 'Ready' status must be True
  137. - "gluster_s3_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"
  138. delay: 10
  139. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  140. - name: Delete GlusterFS StorageClass for S3
  141. oc_obj:
  142. namespace: "{{ glusterfs_namespace }}"
  143. kind: "sc"
  144. name: "glusterfs-{{ glusterfs_name }}-s3"
  145. state: absent
  146. failed_when: False