c12s-kubespray/roles/etcd/tasks/main.yml

19 lines
327 B
YAML
Raw Normal View History

2015-10-03 20:19:50 +00:00
---
- include: install.yml
- include: configure.yml
2016-01-23 17:26:07 +00:00
- name: Restart etcd if binary changed
command: /bin/true
notify: restart etcd
when: etcd_copy.stdout_lines
2016-01-25 01:01:25 +00:00
# reload systemd before starting service
- meta: flush_handlers
- name: Ensure etcd is running
service:
name: etcd
state: started
enabled: yes