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