2015-10-04 04:19:50 +08:00
|
|
|
---
|
2016-11-09 18:31:12 +08:00
|
|
|
- include: pre_upgrade.yml
|
2016-12-08 21:36:00 +08:00
|
|
|
tags: etcd-pre-upgrade
|
2016-11-09 18:44:41 +08:00
|
|
|
- include: check_certs.yml
|
2016-12-08 21:36:00 +08:00
|
|
|
tags: [etcd-secrets, facts]
|
2016-11-09 18:44:41 +08:00
|
|
|
- include: gen_certs.yml
|
2016-12-08 21:36:00 +08:00
|
|
|
tags: etcd-secrets
|
2016-12-14 01:20:22 +08:00
|
|
|
- include: "install_{{ etcd_deployment_type }}.yml"
|
2016-11-09 18:31:12 +08:00
|
|
|
when: is_etcd_master
|
2016-12-08 21:36:00 +08:00
|
|
|
tags: upgrade
|
2016-05-27 17:55:52 +08:00
|
|
|
- include: set_cluster_health.yml
|
2016-11-09 18:31:12 +08:00
|
|
|
when: is_etcd_master
|
2016-01-19 22:23:19 +08:00
|
|
|
- include: configure.yml
|
2016-11-09 18:31:12 +08:00
|
|
|
when: is_etcd_master
|
2016-05-27 17:55:52 +08:00
|
|
|
- include: refresh_config.yml
|
2016-11-09 18:31:12 +08:00
|
|
|
when: is_etcd_master
|
2016-01-24 01:26:07 +08:00
|
|
|
|
2016-12-13 17:03:35 +08:00
|
|
|
- name: Restart etcd if binary or certs changed
|
2016-07-19 21:45:37 +08:00
|
|
|
command: /bin/true
|
|
|
|
notify: restart etcd
|
|
|
|
when: etcd_deployment_type == "host" and etcd_copy.stdout_lines and is_etcd_master
|
2016-12-13 17:03:35 +08:00
|
|
|
or etcd_secret_changed|default(false)
|
2016-07-19 21:45:37 +08:00
|
|
|
|
2017-01-13 19:43:43 +08:00
|
|
|
# reload-systemd
|
2016-07-19 21:45:37 +08:00
|
|
|
- meta: flush_handlers
|
|
|
|
|
2017-01-13 19:43:43 +08:00
|
|
|
- name: Ensure etcd is running
|
|
|
|
service:
|
|
|
|
name: etcd
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
|
|
|
when: is_etcd_master
|
|
|
|
|
2016-05-27 17:55:52 +08: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 18:31:12 +08:00
|
|
|
when: is_etcd_master
|
2016-05-27 17:55:52 +08:00
|
|
|
- include: refresh_config.yml
|
2016-11-09 18:31:12 +08:00
|
|
|
when: is_etcd_master
|