heketi_deploy.yml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. ---
  2. - name: Generate heketi endpoints
  3. template:
  4. src: "heketi-endpoints.yml.j2"
  5. dest: "{{ mktemp.stdout }}/heketi-endpoints.yml"
  6. - name: Generate heketi service
  7. template:
  8. src: "heketi-service.yml.j2"
  9. dest: "{{ mktemp.stdout }}/heketi-service.yml"
  10. - name: Create heketi endpoints
  11. oc_obj:
  12. namespace: "{{ glusterfs_namespace }}"
  13. state: present
  14. kind: endpoints
  15. name: "heketi-db-{{ glusterfs_name }}-endpoints"
  16. files:
  17. - "{{ mktemp.stdout }}/heketi-endpoints.yml"
  18. - name: Create heketi service
  19. oc_obj:
  20. namespace: "{{ glusterfs_namespace }}"
  21. state: present
  22. kind: service
  23. name: "heketi-db-{{ glusterfs_name }}-endpoints"
  24. files:
  25. - "{{ mktemp.stdout }}/heketi-service.yml"
  26. - name: Copy heketi template
  27. copy:
  28. src: "heketi-template.yml"
  29. dest: "{{ mktemp.stdout }}/heketi-template.yml"
  30. - name: Create heketi template
  31. oc_obj:
  32. namespace: "{{ glusterfs_namespace }}"
  33. kind: template
  34. name: heketi
  35. state: present
  36. files:
  37. - "{{ mktemp.stdout }}/heketi-template.yml"
  38. - name: Deploy heketi pod
  39. oc_process:
  40. namespace: "{{ glusterfs_namespace }}"
  41. template_name: "heketi"
  42. create: True
  43. params:
  44. IMAGE_NAME: "{{ glusterfs_heketi_image }}"
  45. HEKETI_ROUTE: "{{ glusterfs_heketi_url | default(['heketi-',glusterfs_name]|join) }}"
  46. HEKETI_USER_KEY: "{{ glusterfs_heketi_user_key }}"
  47. HEKETI_ADMIN_KEY: "{{ glusterfs_heketi_admin_key }}"
  48. HEKETI_EXECUTOR: "{{ glusterfs_heketi_executor }}"
  49. HEKETI_FSTAB: "{{ glusterfs_heketi_fstab }}"
  50. CLUSTER_NAME: "{{ glusterfs_name }}"
  51. - name: Wait for heketi pod
  52. oc_obj:
  53. namespace: "{{ glusterfs_namespace }}"
  54. kind: pod
  55. state: list
  56. selector: "glusterfs=heketi-{{ glusterfs_name }}-pod"
  57. register: heketi_pod_wait
  58. until:
  59. - "heketi_pod_wait.results.results[0]['items'] | count > 0"
  60. # Pod's 'Ready' status must be True
  61. - "heketi_pod_wait.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"
  62. delay: 10
  63. retries: "{{ (glusterfs_timeout | int / 10) | int }}"
  64. - name: Update heketi pod result
  65. set_fact:
  66. heketi_pod: "{{ heketi_pod_wait.results.results[0]['items'][0] }}"
  67. - name: Set heketi-cli command
  68. set_fact:
  69. glusterfs_heketi_client: "{{ openshift_client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig rsh --namespace={{ glusterfs_namespace }} {{ heketi_pod.metadata.name }} {{ glusterfs_heketi_cli }} -s http://localhost:8080 --user admin --secret '{{ glusterfs_heketi_admin_key }}'"
  70. - name: Verify heketi service
  71. command: "{{ glusterfs_heketi_client }} cluster list"
  72. changed_when: False
  73. - name: Set heketi deployed fact
  74. set_fact:
  75. glusterfs_heketi_is_missing: False