2015-10-03 20:19:50 +00:00
|
|
|
---
|
2016-11-09 10:31:12 +00:00
|
|
|
- include: pre_upgrade.yml
|
2017-03-03 20:30:37 +00:00
|
|
|
when: etcd_cluster_setup
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: etcd-pre-upgrade
|
2017-02-08 21:41:36 +00:00
|
|
|
|
2016-11-09 10:44:41 +00:00
|
|
|
- include: check_certs.yml
|
2017-02-08 21:41:36 +00:00
|
|
|
when: cert_management == "script"
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: [etcd-secrets, facts]
|
2017-02-17 21:22:34 +00:00
|
|
|
|
2017-02-08 21:41:36 +00:00
|
|
|
- include: gen_certs_script.yml
|
|
|
|
when: cert_management == "script"
|
|
|
|
tags: etcd-secrets
|
|
|
|
|
|
|
|
- include: sync_etcd_master_certs.yml
|
|
|
|
when: cert_management == "vault" and inventory_hostname in groups.etcd
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: etcd-secrets
|
2017-02-17 21:22:34 +00:00
|
|
|
|
2017-02-08 21:41:36 +00:00
|
|
|
- include: sync_etcd_node_certs.yml
|
|
|
|
when: cert_management == "vault" and inventory_hostname in etcd_node_cert_hosts
|
|
|
|
tags: etcd-secrets
|
2017-02-17 21:22:34 +00:00
|
|
|
|
2017-02-08 21:41:36 +00:00
|
|
|
- include: gen_certs_vault.yml
|
|
|
|
when: cert_management == "vault" and (etcd_master_certs_needed|d() or etcd_node_certs_needed|d())
|
|
|
|
tags: etcd-secrets
|
|
|
|
|
2016-12-13 17:20:22 +00:00
|
|
|
- include: "install_{{ etcd_deployment_type }}.yml"
|
2016-11-09 10:31:12 +00:00
|
|
|
when: is_etcd_master
|
2016-12-08 13:36:00 +00:00
|
|
|
tags: upgrade
|
2017-02-17 21:22:34 +00:00
|
|
|
|
2016-05-27 09:55:52 +00:00
|
|
|
- include: set_cluster_health.yml
|
2017-03-03 20:30:37 +00:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-02-17 21:22:34 +00:00
|
|
|
|
2016-01-19 14:23:19 +00:00
|
|
|
- include: configure.yml
|
2017-03-03 20:30:37 +00:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-02-17 21:22:34 +00:00
|
|
|
|
2016-05-27 09:55:52 +00:00
|
|
|
- include: refresh_config.yml
|
2017-03-03 20:30:37 +00:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2016-01-23 17:26:07 +00:00
|
|
|
|
2017-03-03 20:30:37 +00:00
|
|
|
- name: Restart etcd if certs changed
|
2016-07-19 13:45:37 +00:00
|
|
|
command: /bin/true
|
|
|
|
notify: restart etcd
|
2017-03-03 20:30:37 +00:00
|
|
|
when: is_etcd_master and etcd_secret_changed|default(false)
|
2016-07-19 13:45:37 +00:00
|
|
|
|
2017-01-13 11:43:43 +00:00
|
|
|
# reload-systemd
|
2016-07-19 13:45:37 +00:00
|
|
|
- meta: flush_handlers
|
|
|
|
|
2017-01-13 11:43:43 +00:00
|
|
|
- name: Ensure etcd is running
|
|
|
|
service:
|
|
|
|
name: etcd
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
2017-03-03 20:30:37 +00:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-01-13 11:43:43 +00:00
|
|
|
|
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
|
2017-03-03 20:30:37 +00:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-02-17 21:22:34 +00:00
|
|
|
|
2016-05-27 09:55:52 +00:00
|
|
|
- include: refresh_config.yml
|
2017-03-03 20:30:37 +00:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|