Skip to content
main.yml 1.15 KiB
Newer Older
Smaine Kahlouch's avatar
Smaine Kahlouch committed
---
- include: pre_upgrade.yml
  when: etcd_cluster_setup
Bogdan Dobrelya's avatar
Bogdan Dobrelya committed
  tags: etcd-pre-upgrade
Matthew Mosesohn's avatar
Matthew Mosesohn committed
- include: check_certs.yml
  when: cert_management == "script"
Bogdan Dobrelya's avatar
Bogdan Dobrelya committed
  tags: [etcd-secrets, facts]
- include: "gen_certs_{{ cert_management }}.yml"
  tags: etcd-secrets

Brad Beam's avatar
Brad Beam committed
- include: "install_{{ etcd_deployment_type }}.yml"
Bogdan Dobrelya's avatar
Bogdan Dobrelya committed
  tags: upgrade
- include: set_cluster_health.yml
  when: is_etcd_master and etcd_cluster_setup
Smaine Kahlouch's avatar
Smaine Kahlouch committed
- include: configure.yml
  when: is_etcd_master and etcd_cluster_setup
- include: refresh_config.yml
  when: is_etcd_master and etcd_cluster_setup
- name: Restart etcd if certs changed
  command: /bin/true
  notify: restart etcd
  when: is_etcd_master and etcd_secret_changed|default(false)
# reload-systemd
- meta: flush_handlers

- name: Ensure etcd is running
  service:
    name: etcd
    state: started
    enabled: yes
  when: is_etcd_master and etcd_cluster_setup
# 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
  when: is_etcd_master and etcd_cluster_setup
- include: refresh_config.yml
  when: is_etcd_master and etcd_cluster_setup