Merge pull request #897 from holser/flush_handlers_before_etcd

Flush handlers before etcd restart
This commit is contained in:
Matthew Mosesohn 2017-01-18 12:27:01 +03:00 committed by GitHub
commit 5420fa942e

View file

@ -15,22 +15,22 @@
- include: refresh_config.yml
when: is_etcd_master
- name: Ensure etcd is running
service:
name: etcd
state: started
enabled: yes
when: is_etcd_master
- name: Restart etcd if binary or certs changed
command: /bin/true
notify: restart etcd
when: etcd_deployment_type == "host" and etcd_copy.stdout_lines and is_etcd_master
or etcd_secret_changed|default(false)
# Reload systemd before starting service
# reload-systemd
- meta: flush_handlers
- name: Ensure etcd is running
service:
name: etcd
state: started
enabled: yes
when: is_etcd_master
# After etcd cluster is assembled, make sure that
# initial state of the cluster is in `existing`
# state insted of `new`.