heketi_deploy_part2.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. ---
  2. - name: Create heketi DB volume
  3. command: "heketi-cli -s http://{{ openshift_storage_glusterfs_heketi_url }} --user admin --secret '{{ openshift_storage_glusterfs_heketi_admin_key }}' setup-openshift-heketi-storage --listfile {{ mktemp.stdout }}/heketi-storage.json"
  4. register: setup_storage
  5. failed_when: False
  6. # This is used in the subsequent task
  7. - name: Copy the admin client config
  8. command: >
  9. cp {{ openshift.common.config_base }}/master/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  10. changed_when: False
  11. check_mode: no
  12. # Need `command` here because heketi-storage.json contains multiple objects.
  13. - name: Copy heketi DB to GlusterFS volume
  14. command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f {{ mktemp.stdout }}/heketi-storage.json -n {{ openshift_storage_glusterfs_namespace }}"
  15. when: setup_storage.rc == 0
  16. - name: Wait for copy job to finish
  17. oc_obj:
  18. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  19. kind: job
  20. state: list
  21. name: "heketi-storage-copy-job"
  22. register: heketi_job
  23. until:
  24. - "'results' in heketi_job.results and heketi_job.results.results | count > 0"
  25. # Pod's 'Complete' status must be True
  26. - "heketi_job.results.results | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Complete'}) | map('bool') | select | list | count == 1"
  27. delay: 10
  28. retries: "{{ (openshift_storage_glusterfs_timeout / 10) | int }}"
  29. failed_when:
  30. - "'results' in heketi_job.results"
  31. - "heketi_job.results.results | count > 0"
  32. # Fail when pod's 'Failed' status is True
  33. - "heketi_job.results.results | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Failed'}) | map('bool') | select | list | count == 1"
  34. when: setup_storage.rc == 0
  35. - name: Delete deploy resources
  36. oc_obj:
  37. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  38. kind: "{{ item.kind }}"
  39. name: "{{ item.name | default(omit) }}"
  40. selector: "{{ item.selector | default(omit) }}"
  41. state: absent
  42. with_items:
  43. - kind: "template,route,service,jobs,dc,secret"
  44. selector: "deploy-heketi"
  45. failed_when: False
  46. - name: Copy heketi template
  47. copy:
  48. src: "{{ openshift.common.examples_content_version }}/heketi-template.yml"
  49. dest: "{{ mktemp.stdout }}/heketi-template.yml"
  50. - name: Create heketi resources
  51. oc_obj:
  52. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  53. kind: template
  54. name: heketi
  55. state: present
  56. files:
  57. - "{{ mktemp.stdout }}/heketi-template.yml"
  58. - name: Deploy heketi pod
  59. oc_process:
  60. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  61. template_name: "heketi"
  62. create: True
  63. params:
  64. IMAGE_NAME: "{{ openshift_storage_glusterfs_heketi_image }}"
  65. IMAGE_VERSION: "{{ openshift_storage_glusterfs_heketi_version }}"
  66. HEKETI_USER_KEY: "{{ openshift_storage_glusterfs_heketi_user_key }}"
  67. HEKETI_ADMIN_KEY: "{{ openshift_storage_glusterfs_heketi_admin_key }}"
  68. - name: Wait for heketi pod
  69. oc_obj:
  70. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  71. kind: pod
  72. state: list
  73. selector: "glusterfs=heketi-pod"
  74. register: heketi_pod
  75. until:
  76. - "heketi_pod.results.results[0]['items'] | count > 0"
  77. # Pod's 'Ready' status must be True
  78. - "heketi_pod.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == 1"
  79. delay: 10
  80. retries: "{{ (openshift_storage_glusterfs_timeout / 10) | int }}"
  81. - name: Determine heketi URL
  82. oc_obj:
  83. namespace: "{{ openshift_storage_glusterfs_namespace }}"
  84. state: list
  85. kind: ep
  86. selector: "glusterfs=heketi-service"
  87. register: heketi_url
  88. until:
  89. - "heketi_url.results.results[0]['items'][0].subsets[0].addresses[0].ip != ''"
  90. - "heketi_url.results.results[0]['items'][0].subsets[0].ports[0].port != ''"
  91. delay: 10
  92. retries: "{{ (openshift_storage_glusterfs_timeout / 10) | int }}"
  93. - name: Set heketi URL
  94. set_fact:
  95. 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 }}"
  96. - name: Verify heketi service
  97. command: "heketi-cli -s http://{{ openshift_storage_glusterfs_heketi_url }} --user admin --secret '{{ openshift_storage_glusterfs_heketi_admin_key }}' cluster list"
  98. changed_when: False