2015-10-04 04:19:50 +08:00
|
|
|
---
|
2016-11-09 18:31:12 +08:00
|
|
|
- include: pre_upgrade.yml
|
2017-03-04 04:30:37 +08:00
|
|
|
when: etcd_cluster_setup
|
2016-12-08 21:36:00 +08:00
|
|
|
tags: etcd-pre-upgrade
|
2017-02-09 05:41:36 +08:00
|
|
|
|
2016-11-09 18:44:41 +08:00
|
|
|
- include: check_certs.yml
|
2017-02-09 05:41:36 +08:00
|
|
|
when: cert_management == "script"
|
2016-12-08 21:36:00 +08:00
|
|
|
tags: [etcd-secrets, facts]
|
2017-02-18 05:22:34 +08:00
|
|
|
|
2017-04-12 18:37:50 +08:00
|
|
|
- include: "gen_certs_{{ cert_management }}.yml"
|
2017-02-09 05:41:36 +08:00
|
|
|
tags: etcd-secrets
|
|
|
|
|
2017-08-30 21:03:22 +08:00
|
|
|
- include: upd_ca_trust.yml
|
|
|
|
tags: etcd-secrets
|
|
|
|
|
2017-09-01 14:02:23 +08:00
|
|
|
- name: "Gen_certs | Get etcd certificate serials"
|
|
|
|
shell: "openssl x509 -in {{ etcd_cert_dir }}/node-{{ inventory_hostname }}.pem -noout -serial | cut -d= -f2"
|
|
|
|
register: "node-{{ inventory_hostname }}_serial"
|
|
|
|
when: inventory_hostname in groups['k8s-cluster']|union(groups['etcd'])|union(groups['calico-rr']|default([]))|unique|sort
|
|
|
|
|
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
|
2017-02-18 05:22:34 +08:00
|
|
|
|
2016-05-27 17:55:52 +08:00
|
|
|
- include: set_cluster_health.yml
|
2017-03-04 04:30:37 +08:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-02-18 05:22:34 +08:00
|
|
|
|
2016-01-19 22:23:19 +08:00
|
|
|
- include: configure.yml
|
2017-03-04 04:30:37 +08:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-02-18 05:22:34 +08:00
|
|
|
|
2016-05-27 17:55:52 +08:00
|
|
|
- include: refresh_config.yml
|
2017-03-04 04:30:37 +08:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2016-01-24 01:26:07 +08:00
|
|
|
|
2017-03-04 04:30:37 +08:00
|
|
|
- name: Restart etcd if certs changed
|
2016-07-19 21:45:37 +08:00
|
|
|
command: /bin/true
|
|
|
|
notify: restart etcd
|
2017-03-04 04:30:37 +08:00
|
|
|
when: is_etcd_master and 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
|
2017-03-04 04:30:37 +08:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-01-13 19:43:43 +08:00
|
|
|
|
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
|
2017-03-04 04:30:37 +08:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-02-18 05:22:34 +08:00
|
|
|
|
2016-05-27 17:55:52 +08:00
|
|
|
- include: refresh_config.yml
|
2017-03-04 04:30:37 +08:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|