2016-01-19 22:23:19 +08:00
|
|
|
---
|
2020-08-31 18:20:20 +08:00
|
|
|
- name: Configure | Check if etcd cluster is healthy
|
|
|
|
shell: "set -o pipefail && {{ bin_dir }}/etcdctl endpoint --cluster status && {{ bin_dir }}/etcdctl endpoint --cluster health 2>&1 | grep -q -v 'Error: unhealthy cluster'"
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
2018-04-02 00:58:08 +08:00
|
|
|
register: etcd_cluster_is_healthy
|
2020-04-08 16:27:43 +08:00
|
|
|
failed_when: false
|
2016-05-27 17:55:52 +08:00
|
|
|
changed_when: false
|
2017-02-07 02:13:21 +08:00
|
|
|
check_mode: no
|
2020-04-08 16:27:43 +08:00
|
|
|
run_once: yes
|
2018-04-02 00:58:08 +08:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- facts
|
2017-11-07 22:06:16 +08:00
|
|
|
environment:
|
2020-07-20 22:26:51 +08:00
|
|
|
ETCDCTL_API: 3
|
|
|
|
ETCDCTL_CERT: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}.pem"
|
|
|
|
ETCDCTL_KEY: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}-key.pem"
|
|
|
|
ETCDCTL_CACERT: "{{ etcd_cert_dir }}/ca.pem"
|
2020-07-01 19:56:16 +08:00
|
|
|
ETCDCTL_ENDPOINTS: "{{ etcd_access_addresses }}"
|
2016-05-27 17:55:52 +08:00
|
|
|
|
2020-08-31 18:20:20 +08:00
|
|
|
- name: Configure | Check if etcd-events cluster is healthy
|
|
|
|
shell: "set -o pipefail && {{ bin_dir }}/etcdctl endpoint --cluster status && {{ bin_dir }}/etcdctl endpoint --cluster health 2>&1 | grep -q -v 'Error: unhealthy cluster'"
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
2018-04-02 00:58:08 +08:00
|
|
|
register: etcd_events_cluster_is_healthy
|
2020-04-08 16:27:43 +08:00
|
|
|
failed_when: false
|
2018-03-01 16:39:14 +08:00
|
|
|
changed_when: false
|
|
|
|
check_mode: no
|
2020-04-08 16:27:43 +08:00
|
|
|
run_once: yes
|
2018-03-01 16:39:14 +08:00
|
|
|
when: is_etcd_master and etcd_events_cluster_setup
|
|
|
|
tags:
|
|
|
|
- facts
|
|
|
|
environment:
|
2020-07-20 22:26:51 +08:00
|
|
|
ETCDCTL_API: 3
|
|
|
|
ETCDCTL_CERT: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}.pem"
|
|
|
|
ETCDCTL_KEY: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}-key.pem"
|
|
|
|
ETCDCTL_CACERT: "{{ etcd_cert_dir }}/ca.pem"
|
2020-07-01 19:56:16 +08:00
|
|
|
ETCDCTL_ENDPOINTS: "{{ etcd_events_access_addresses }}"
|
2018-03-01 16:39:14 +08:00
|
|
|
|
2018-04-02 00:58:08 +08:00
|
|
|
- include_tasks: refresh_config.yml
|
|
|
|
when: is_etcd_master
|
|
|
|
|
2016-05-27 17:55:52 +08:00
|
|
|
- name: Configure | Copy etcd.service systemd file
|
2016-01-19 22:23:19 +08:00
|
|
|
template:
|
2016-06-24 20:25:16 +08:00
|
|
|
src: "etcd-{{ etcd_deployment_type }}.service.j2"
|
2016-02-20 01:48:53 +08:00
|
|
|
dest: /etc/systemd/system/etcd.service
|
2016-01-19 22:23:19 +08:00
|
|
|
backup: yes
|
2018-04-02 00:58:08 +08:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
2017-10-20 15:02:31 +08:00
|
|
|
|
2018-03-01 16:39:14 +08:00
|
|
|
- name: Configure | Copy etcd-events.service systemd file
|
|
|
|
template:
|
2018-04-02 00:58:08 +08:00
|
|
|
src: "etcd-events-{{ etcd_deployment_type }}.service.j2"
|
2018-03-01 16:39:14 +08:00
|
|
|
dest: /etc/systemd/system/etcd-events.service
|
|
|
|
backup: yes
|
2018-04-02 00:58:08 +08:00
|
|
|
when: is_etcd_master and etcd_events_cluster_setup
|
2018-03-01 16:39:14 +08:00
|
|
|
|
2018-04-02 00:58:08 +08:00
|
|
|
- name: Configure | reload systemd
|
2019-04-24 13:18:00 +08:00
|
|
|
systemd:
|
|
|
|
daemon_reload: true
|
2018-04-02 00:58:08 +08:00
|
|
|
when: is_etcd_master
|
|
|
|
|
2020-04-08 16:27:43 +08:00
|
|
|
# when scaling new etcd will fail to start
|
2018-04-02 00:58:08 +08:00
|
|
|
- name: Configure | Ensure etcd is running
|
|
|
|
service:
|
|
|
|
name: etcd
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
2020-04-08 16:27:43 +08:00
|
|
|
ignore_errors: "{{ etcd_cluster_is_healthy.rc == 0 }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
|
|
|
|
2020-04-08 16:27:43 +08:00
|
|
|
# when scaling new etcd will fail to start
|
2018-04-02 00:58:08 +08:00
|
|
|
- name: Configure | Ensure etcd-events is running
|
|
|
|
service:
|
|
|
|
name: etcd-events
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
2020-04-08 16:27:43 +08:00
|
|
|
ignore_errors: "{{ etcd_events_cluster_is_healthy.rc == 0 }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
when: is_etcd_master and etcd_events_cluster_setup
|
|
|
|
|
2020-08-31 18:20:20 +08:00
|
|
|
- name: Configure | Wait for etcd cluster to be healthy
|
|
|
|
shell: "set -o pipefail && {{ bin_dir }}/etcdctl endpoint --cluster status && {{ bin_dir }}/etcdctl endpoint --cluster health 2>&1 | grep -q -v 'Error: unhealthy cluster'"
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
2018-04-02 00:58:08 +08:00
|
|
|
register: etcd_cluster_is_healthy
|
|
|
|
until: etcd_cluster_is_healthy.rc == 0
|
2020-02-11 17:38:01 +08:00
|
|
|
retries: "{{ etcd_retries }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
changed_when: false
|
|
|
|
check_mode: no
|
2019-08-07 19:44:50 +08:00
|
|
|
run_once: yes
|
|
|
|
when:
|
|
|
|
- is_etcd_master
|
|
|
|
- etcd_cluster_setup
|
2018-04-02 00:58:08 +08:00
|
|
|
tags:
|
|
|
|
- facts
|
|
|
|
environment:
|
2020-07-20 22:26:51 +08:00
|
|
|
ETCDCTL_API: 3
|
|
|
|
ETCDCTL_CERT: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}.pem"
|
|
|
|
ETCDCTL_KEY: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}-key.pem"
|
|
|
|
ETCDCTL_CACERT: "{{ etcd_cert_dir }}/ca.pem"
|
2020-07-01 19:56:16 +08:00
|
|
|
ETCDCTL_ENDPOINTS: "{{ etcd_access_addresses }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
|
2020-08-31 18:20:20 +08:00
|
|
|
- name: Configure | Wait for etcd-events cluster to be healthy
|
|
|
|
shell: "set -o pipefail && {{ bin_dir }}/etcdctl endpoint --cluster status && {{ bin_dir }}/etcdctl endpoint --cluster health 2>&1 | grep -q -v 'Error: unhealthy cluster'"
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
2018-04-02 00:58:08 +08:00
|
|
|
register: etcd_events_cluster_is_healthy
|
|
|
|
until: etcd_events_cluster_is_healthy.rc == 0
|
2020-02-11 17:38:01 +08:00
|
|
|
retries: "{{ etcd_retries }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
changed_when: false
|
|
|
|
check_mode: no
|
2019-08-07 19:44:50 +08:00
|
|
|
run_once: yes
|
|
|
|
when:
|
|
|
|
- is_etcd_master
|
|
|
|
- etcd_events_cluster_setup
|
2018-04-02 00:58:08 +08:00
|
|
|
tags:
|
|
|
|
- facts
|
|
|
|
environment:
|
2020-07-20 22:26:51 +08:00
|
|
|
ETCDCTL_API: 3
|
|
|
|
ETCDCTL_CERT: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}.pem"
|
|
|
|
ETCDCTL_KEY: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}-key.pem"
|
|
|
|
ETCDCTL_CACERT: "{{ etcd_cert_dir }}/ca.pem"
|
2020-07-01 19:56:16 +08:00
|
|
|
ETCDCTL_ENDPOINTS: "{{ etcd_events_access_addresses }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
|
|
|
|
- name: Configure | Check if member is in etcd cluster
|
2020-07-20 22:26:51 +08:00
|
|
|
shell: "{{ bin_dir }}/etcdctl member list | grep -q {{ etcd_access_address }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
register: etcd_member_in_cluster
|
|
|
|
ignore_errors: true
|
|
|
|
changed_when: false
|
|
|
|
check_mode: no
|
|
|
|
when: is_etcd_master and etcd_cluster_setup
|
|
|
|
tags:
|
|
|
|
- facts
|
|
|
|
environment:
|
2020-07-20 22:26:51 +08:00
|
|
|
ETCDCTL_API: 3
|
|
|
|
ETCDCTL_CERT: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}.pem"
|
|
|
|
ETCDCTL_KEY: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}-key.pem"
|
|
|
|
ETCDCTL_CACERT: "{{ etcd_cert_dir }}/ca.pem"
|
2020-07-01 19:56:16 +08:00
|
|
|
ETCDCTL_ENDPOINTS: "{{ etcd_access_addresses }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
|
|
|
|
- name: Configure | Check if member is in etcd-events cluster
|
2020-07-20 22:26:51 +08:00
|
|
|
shell: "{{ bin_dir }}/etcdctl member list | grep -q {{ etcd_access_address }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
register: etcd_events_member_in_cluster
|
|
|
|
ignore_errors: true
|
|
|
|
changed_when: false
|
|
|
|
check_mode: no
|
|
|
|
when: is_etcd_master and etcd_events_cluster_setup
|
|
|
|
tags:
|
|
|
|
- facts
|
|
|
|
environment:
|
2020-07-20 22:26:51 +08:00
|
|
|
ETCDCTL_API: 3
|
|
|
|
ETCDCTL_CERT: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}.pem"
|
|
|
|
ETCDCTL_KEY: "{{ etcd_cert_dir }}/admin-{{ inventory_hostname }}-key.pem"
|
|
|
|
ETCDCTL_CACERT: "{{ etcd_cert_dir }}/ca.pem"
|
2020-07-01 19:56:16 +08:00
|
|
|
ETCDCTL_ENDPOINTS: "{{ etcd_events_access_addresses }}"
|
2018-03-01 16:39:14 +08:00
|
|
|
|
|
|
|
- name: Configure | Join member(s) to etcd cluster one at a time
|
|
|
|
include_tasks: join_etcd_member.yml
|
2017-10-20 15:02:31 +08:00
|
|
|
with_items: "{{ groups['etcd'] }}"
|
2018-04-02 00:58:08 +08:00
|
|
|
when: inventory_hostname == item and etcd_cluster_setup and etcd_member_in_cluster.rc != 0 and etcd_cluster_is_healthy.rc == 0
|
2018-03-01 16:39:14 +08:00
|
|
|
|
|
|
|
- name: Configure | Join member(s) to etcd-events cluster one at a time
|
2018-04-02 00:58:08 +08:00
|
|
|
include_tasks: join_etcd-events_member.yml
|
2018-03-01 16:39:14 +08:00
|
|
|
with_items: "{{ groups['etcd'] }}"
|
|
|
|
when: inventory_hostname == item and etcd_events_cluster_setup and etcd_events_member_in_cluster.rc != 0 and etcd_events_cluster_is_healthy.rc == 0
|