glusterblock_deploy.yml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. ---
  2. - name: Delete pre-existing glusterblock provisioner 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,deploy,sa,clusterrole,clusterrolebinding"
  11. selector: "glusterblock"
  12. failed_when: False
  13. when: glusterfs_wipe
  14. - name: Wait for glusterblock provisioner pods to terminate
  15. oc_obj:
  16. namespace: "{{ glusterfs_namespace }}"
  17. kind: pod
  18. state: list
  19. selector: "glusterfs=block-{{ glusterfs_name }}-provisioner-pod"
  20. register: glusterblock_pod
  21. until: "glusterblock_pod.results.results[0]['items'] | count == 0"
  22. delay: 10
  23. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  24. when: glusterfs_wipe
  25. - name: Copy initial glusterblock provisioner resource file
  26. copy:
  27. src: "{{ openshift.common.examples_content_version }}/{{ item }}"
  28. dest: "{{ mktemp.stdout }}/{{ item }}"
  29. with_items:
  30. - "glusterblock-template.yml"
  31. - name: Create glusterblock provisioner template
  32. oc_obj:
  33. namespace: "{{ glusterfs_namespace }}"
  34. kind: template
  35. name: "glusterblock"
  36. state: present
  37. files:
  38. - "{{ mktemp.stdout }}/glusterblock-template.yml"
  39. - name: Deploy glusterblock provisioner
  40. oc_process:
  41. namespace: "{{ glusterfs_namespace }}"
  42. template_name: "glusterblock"
  43. create: True
  44. params:
  45. IMAGE_NAME: "{{ glusterfs_block_image }}"
  46. IMAGE_VERSION: "{{ glusterfs_block_version }}"
  47. NAMESPACE: "{{ glusterfs_namespace }}"
  48. CLUSTER_NAME: "{{ glusterfs_name }}"
  49. - name: Wait for glusterblock provisioner pod
  50. oc_obj:
  51. namespace: "{{ glusterfs_namespace }}"
  52. kind: pod
  53. state: list
  54. selector: "glusterfs=block-{{ glusterfs_name }}-provisioner-pod"
  55. register: glusterblock_pod
  56. until:
  57. - "glusterblock_pod.results.results[0]['items'] | count > 0"
  58. # Pod's 'Ready' status must be True
  59. - "glusterblock_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == 1"
  60. delay: 10
  61. retries: "{{ (glusterfs_timeout | int / 10) | int }}"