glusterfs_deploy.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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