gluster_s3_deploy.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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: Copy gluster-s3 PVCs template file
  26. copy:
  27. src: "{{ openshift.common.examples_content_version }}/{{ item }}"
  28. dest: "{{ mktemp.stdout }}/{{ item }}"
  29. with_items:
  30. - "gluster-s3-pvcs-template.yml"
  31. - name: Create gluster-s3 PVCs template
  32. oc_obj:
  33. namespace: "{{ glusterfs_namespace }}"
  34. kind: template
  35. name: "gluster-s3-pvcs"
  36. state: present
  37. files:
  38. - "{{ mktemp.stdout }}/gluster-s3-pvcs-template.yml"
  39. - name: Create gluster-s3 PVCs
  40. oc_process:
  41. namespace: "{{ glusterfs_namespace }}"
  42. template_name: "gluster-s3-pvcs"
  43. create: True
  44. params:
  45. S3_ACCOUNT: "{{ glusterfs_s3_account }}"
  46. PVC: "{{ glusterfs_s3_pvc }}"
  47. PVC_SIZE: "{{ glusterfs_s3_pvc_size }}"
  48. META_PVC: "{{ glusterfs_s3_meta_pvc }}"
  49. META_PVC_SIZE: "{{ glusterfs_s3_meta_pvc_size }}"
  50. CLUSTER_NAME: "{{ glusterfs_name }}"
  51. - name: Wait for gluster-s3 PVCs
  52. oc_obj:
  53. namespace: "{{ glusterfs_namespace }}"
  54. kind: pvc
  55. state: list
  56. selector: "glusterfs=s3-{{ glusterfs_name }}-{{ glusterfs_s3_account }}-storage"
  57. register: gluster_s3_pvcs
  58. until:
  59. - "gluster_s3_pvcs.results.results[0]['items'] | count > 0"
  60. # Pod's 'Bound' status must be True
  61. - "gluster_s3_pvcs.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Bound'}) | map('bool') | select | list | count == 2"
  62. delay: 10
  63. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  64. - name: Copy gluster-s3 template file
  65. copy:
  66. src: "{{ openshift.common.examples_content_version }}/{{ item }}"
  67. dest: "{{ mktemp.stdout }}/{{ item }}"
  68. with_items:
  69. - "gluster-s3-template.yml"
  70. - name: Create gluster-s3 template
  71. oc_obj:
  72. namespace: "{{ glusterfs_namespace }}"
  73. kind: template
  74. name: "gluster-s3"
  75. state: present
  76. files:
  77. - "{{ mktemp.stdout }}/gluster-s3-template.yml"
  78. - name: Deploy gluster-s3 service
  79. oc_process:
  80. namespace: "{{ glusterfs_namespace }}"
  81. template_name: "gluster-s3"
  82. create: True
  83. params:
  84. IMAGE_NAME: "{{ glusterfs_s3_image }}"
  85. IMAGE_VERSION: "{{ glusterfs_s3_version }}"
  86. S3_ACCOUNT: "{{ glusterfs_s3_account }}"
  87. S3_USER: "{{ glusterfs_s3_user }}"
  88. S3_PASSWORD: "{{ glusterfs_s3_password }}"
  89. PVC: "{{ glusterfs_s3_pvc }}"
  90. META_PVC: "{{ glusterfs_s3_meta_pvc }}"
  91. CLUSTER_NAME: "{{ glusterfs_name }}"
  92. - name: Wait for gluster-s3 pod
  93. oc_obj:
  94. namespace: "{{ glusterfs_namespace }}"
  95. kind: pod
  96. state: list
  97. selector: "glusterfs=s3-{{ glusterfs_name }}-{{ glusterfs_s3_account }}-pod"
  98. register: gluster_s3_pod
  99. until:
  100. - "gluster_s3_pod.results.results[0]['items'] | count > 0"
  101. # Pod's 'Ready' status must be True
  102. - "gluster_s3_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == 1"
  103. delay: 10
  104. retries: "{{ (glusterfs_timeout | int / 10) | int }}"