glusterfs_deploy.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ---
  2. - assert:
  3. that: "glusterfs_nodes | count >= 3"
  4. msg: There must be at least three GlusterFS nodes specified
  5. - name: Copy GlusterFS DaemonSet template
  6. copy:
  7. src: "glusterfs-template.yml"
  8. dest: "{{ mktemp.stdout }}/glusterfs-template.yml"
  9. - name: Create GlusterFS template
  10. oc_obj:
  11. namespace: "{{ glusterfs_namespace }}"
  12. kind: template
  13. name: "glusterfs"
  14. state: present
  15. files:
  16. - "{{ mktemp.stdout }}/glusterfs-template.yml"
  17. - import_tasks: label_nodes.yml
  18. - name: Check GlusterFS DaemonSet status
  19. oc_obj:
  20. namespace: "{{ glusterfs_namespace }}"
  21. kind: daemonset
  22. name: glusterfs-{{ glusterfs_name }}
  23. state: list
  24. register: glusterfs_ds
  25. - name: Deploy GlusterFS pods
  26. oc_process:
  27. namespace: "{{ glusterfs_namespace }}"
  28. template_name: "glusterfs"
  29. create: True
  30. params:
  31. IMAGE_NAME: "{{ glusterfs_image }}"
  32. NODE_LABELS: "{{ glusterfs_nodeselector }}"
  33. CLUSTER_NAME: "{{ glusterfs_name }}"
  34. GB_GLFS_LRU_COUNT: "{{ glusterfs_block_host_vol_max }}"
  35. when: (glusterfs_ds.results.results[0].status is not defined) or
  36. (glusterfs_ds.results.results[0].status.numberReady | default(0) < glusterfs_ds.results.results[0].status.desiredNumberScheduled | default(glusterfs_nodes | count))
  37. - import_tasks: wait_for_pods.yml
  38. - name: Get GlusterFS pods
  39. set_fact:
  40. glusterfs_pods: "{{ glusterfs_pods_wait.results.results[0]['items'] }}"
  41. when:
  42. - glusterfs_restart
  43. - include_tasks: glusterfs_restart_pod.yml
  44. vars:
  45. restart_node: "{{ item }}"
  46. with_items: "{{ glusterfs_pods | default([]) }}"
  47. when:
  48. - glusterfs_restart