Flush handlers before etcd restart
systemctl daemon-reload should be run before when task modifies/creates union for etcd. Otherwise etcd won't be able to start Closes #892 Signed-off-by: Sergii Golovatiuk <sgolovatiuk@mirantis.com>
This commit is contained in:
parent
36b62b7270
commit
43fa72b7b7
1 changed files with 8 additions and 8 deletions
|
@ -15,22 +15,22 @@
|
||||||
- include: refresh_config.yml
|
- include: refresh_config.yml
|
||||||
when: is_etcd_master
|
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
|
- name: Restart etcd if binary or certs changed
|
||||||
command: /bin/true
|
command: /bin/true
|
||||||
notify: restart etcd
|
notify: restart etcd
|
||||||
when: etcd_deployment_type == "host" and etcd_copy.stdout_lines and is_etcd_master
|
when: etcd_deployment_type == "host" and etcd_copy.stdout_lines and is_etcd_master
|
||||||
or etcd_secret_changed|default(false)
|
or etcd_secret_changed|default(false)
|
||||||
|
|
||||||
# Reload systemd before starting service
|
# reload-systemd
|
||||||
- meta: flush_handlers
|
- 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
|
# After etcd cluster is assembled, make sure that
|
||||||
# initial state of the cluster is in `existing`
|
# initial state of the cluster is in `existing`
|
||||||
# state insted of `new`.
|
# state insted of `new`.
|
||||||
|
|
Loading…
Reference in a new issue