c12s-kubespray/roles/etcd/tasks/main.yml
2016-01-25 10:54:07 +01:00

19 lines
327 B
YAML

---
- include: install.yml
- include: configure.yml
- name: Restart etcd if binary changed
command: /bin/true
notify: restart etcd
when: etcd_copy.stdout_lines
# reload systemd before starting service
- meta: flush_handlers
- name: Ensure etcd is running
service:
name: etcd
state: started
enabled: yes