cluster_health.yml 680 B

123456789101112131415
  1. ---
  2. # glusterfs_check_containerized is a custom module defined at
  3. # lib_utils/library/glusterfs_check_containerized.py
  4. - name: Check for GlusterFS cluster health
  5. glusterfs_check_containerized:
  6. oc_bin: "{{ first_master_client_binary }}"
  7. oc_conf: "{{ openshift.common.config_base }}/master/admin.kubeconfig"
  8. oc_namespace: "{{ glusterfs_namespace }}"
  9. cluster_name: "{{ glusterfs_name }}"
  10. exclude_node: "{{ openshift.common.hostname }}"
  11. delegate_to: "{{ groups.oo_first_master.0 }}"
  12. retries: "{{ (glusterfs_health_timeout | int / 10) | int }}"
  13. delay: 10
  14. register: glusterfs_check_containerized_res
  15. until: glusterfs_check_containerized_res is succeeded