2015-10-03 20:19:50 +00:00
|
|
|
---
|
2016-11-09 10:31:12 +00:00
|
|
|
- include: pre_upgrade.yml
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: etcd-pre-upgrade
|
2016-11-09 10:44:41 +00:00
|
|
|
- include: check_certs.yml
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: [etcd-secrets, facts]
|
2016-11-09 10:44:41 +00:00
|
|
|
- include: gen_certs.yml
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: etcd-secrets
|
2016-01-19 14:23:19 +00:00
|
|
|
- include: install.yml
|
2016-11-09 10:31:12 +00:00
|
|
|
when: is_etcd_master
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: upgrade
|
2016-05-27 09:55:52 +00:00
|
|
|
- include: set_cluster_health.yml
|
2016-11-09 10:31:12 +00:00
|
|
|
when: is_etcd_master
|
2016-01-19 14:23:19 +00:00
|
|
|
- include: configure.yml
|
2016-11-09 10:31:12 +00:00
|
|
|
when: is_etcd_master
|
2016-05-27 09:55:52 +00:00
|
|
|
- include: refresh_config.yml
|
2016-11-09 10:31:12 +00:00
|
|
|
when: is_etcd_master
|
2016-01-23 17:26:07 +00:00
|
|
|
|
2016-01-25 01:01:25 +00:00
|
|
|
- name: Ensure etcd is running
|
|
|
|
service:
|
|
|
|
name: etcd
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
2016-07-11 14:05:05 +00:00
|
|
|
when: is_etcd_master
|
|
|
|
|
2016-07-19 13:45:37 +00:00
|
|
|
- name: Restart etcd if binary changed
|
|
|
|
command: /bin/true
|
|
|
|
notify: restart etcd
|
|
|
|
when: etcd_deployment_type == "host" and etcd_copy.stdout_lines and is_etcd_master
|
|
|
|
|
|
|
|
# Reload systemd before starting service
|
|
|
|
- meta: flush_handlers
|
|
|
|
|
2016-05-27 09:55:52 +00: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
|
2016-11-09 10:31:12 +00:00
|
|
|
when: is_etcd_master
|
2016-05-27 09:55:52 +00:00
|
|
|
- include: refresh_config.yml
|
2016-11-09 10:31:12 +00:00
|
|
|
when: is_etcd_master
|