gluster_s3_deploy.yml 4.2 KB

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