2015-10-04 04:19:50 +08:00
|
|
|
---
|
2016-05-27 17:55:52 +08:00
|
|
|
- include: set_facts.yml
|
2016-01-19 22:23:19 +08:00
|
|
|
- include: install.yml
|
2016-05-27 17:55:52 +08:00
|
|
|
- include: set_cluster_health.yml
|
2016-01-19 22:23:19 +08:00
|
|
|
- include: configure.yml
|
2016-05-27 17:55:52 +08:00
|
|
|
- include: refresh_config.yml
|
2016-01-24 01:26:07 +08:00
|
|
|
|
|
|
|
- name: Restart etcd if binary changed
|
|
|
|
command: /bin/true
|
|
|
|
notify: restart etcd
|
|
|
|
when: etcd_copy.stdout_lines
|
2016-01-25 09:01:25 +08:00
|
|
|
|
2016-05-27 17:55:52 +08:00
|
|
|
# Reload systemd before starting service
|
2016-01-25 09:01:25 +08:00
|
|
|
- meta: flush_handlers
|
|
|
|
|
|
|
|
- name: Ensure etcd is running
|
|
|
|
service:
|
|
|
|
name: etcd
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
2016-05-27 17:55:52 +08:00
|
|
|
|
|
|
|
# After etcd cluster is assembled, make sure that
|
|
|
|
# initial state of the cluster is in `existing`
|
|
|
|
# state insted of `new`.
|
|
|
|
- include: set_cluster_health.yml
|
|
|
|
- include: refresh_config.yml
|