2016-05-27 17:55:52 +08:00
|
|
|
---
|
|
|
|
- name: Configure | Check if cluster is healthy
|
2016-10-21 03:56:52 +08:00
|
|
|
shell: "{{ bin_dir }}/etcdctl --peers={{ etcd_access_addresses }} cluster-health | grep -q 'cluster is healthy'"
|
2016-05-27 17:55:52 +08:00
|
|
|
register: etcd_cluster_is_healthy
|
2016-12-27 19:38:54 +08:00
|
|
|
failed_when: false
|
2016-05-27 17:55:52 +08:00
|
|
|
changed_when: false
|
2017-02-07 02:13:21 +08:00
|
|
|
check_mode: no
|
2016-05-27 17:55:52 +08:00
|
|
|
when: is_etcd_master
|
2016-12-08 21:36:00 +08:00
|
|
|
tags: facts
|