2019-02-14 14:13:13 +08:00
|
|
|
# add new-etcd node, one at a time
|
2019-02-24 12:56:47 +08:00
|
|
|
- hosts: "{{ NODE_TO_ADD }}"
|
2019-02-14 14:13:13 +08:00
|
|
|
tasks:
|
2021-01-07 09:30:50 +08:00
|
|
|
# step1: find a healthy member in the etcd cluster
|
2019-07-23 11:10:47 +08:00
|
|
|
- block:
|
|
|
|
- name: set NODE_IPS of the etcd cluster
|
|
|
|
set_fact: NODE_IPS="{% for host in groups['etcd'] %}{{ host }} {% endfor %}"
|
|
|
|
|
|
|
|
- name: get etcd cluster status
|
|
|
|
shell: 'for ip in {{ NODE_IPS }};do \
|
|
|
|
ETCDCTL_API=3 {{ base_dir }}/bin/etcdctl \
|
|
|
|
--endpoints=https://"$ip":2379 \
|
2020-12-25 11:53:00 +08:00
|
|
|
--cacert={{ cluster_dir }}/ssl/ca.pem \
|
2020-12-30 11:25:54 +08:00
|
|
|
--cert={{ cluster_dir }}/ssl/etcd.pem \
|
|
|
|
--key={{ cluster_dir }}/ssl/etcd-key.pem \
|
2019-07-23 11:10:47 +08:00
|
|
|
endpoint health; \
|
|
|
|
done'
|
|
|
|
register: ETCD_CLUSTER_STATUS
|
|
|
|
|
2020-11-19 20:19:27 +08:00
|
|
|
- debug: var="ETCD_CLUSTER_STATUS"
|
2019-11-25 20:06:41 +08:00
|
|
|
|
2019-07-23 11:10:47 +08:00
|
|
|
- name: get a running ectd node
|
2019-11-25 20:06:41 +08:00
|
|
|
shell: 'echo -e "{{ ETCD_CLUSTER_STATUS.stdout }}" \
|
|
|
|
"{{ ETCD_CLUSTER_STATUS.stderr }}" \
|
|
|
|
|grep "is healthy"|sed -n "1p"|cut -d: -f2|cut -d/ -f3'
|
2019-07-23 11:10:47 +08:00
|
|
|
register: RUNNING_NODE
|
|
|
|
|
|
|
|
- debug: var="RUNNING_NODE.stdout"
|
|
|
|
connection: local
|
|
|
|
|
2021-01-07 09:30:50 +08:00
|
|
|
# step2: add a new member in the etcd cluster
|
2019-02-14 14:13:13 +08:00
|
|
|
- name: add a new etcd member
|
2021-01-07 09:30:50 +08:00
|
|
|
shell: "ETCDCTL_API=3 {{ bin_dir }}/etcdctl member add etcd-{{ NODE_TO_ADD }} \
|
2019-11-25 20:06:41 +08:00
|
|
|
--peer-urls=https://{{ NODE_TO_ADD }}:2380"
|
2019-07-23 11:10:47 +08:00
|
|
|
delegate_to: "{{ RUNNING_NODE.stdout }}"
|
2019-02-14 14:13:13 +08:00
|
|
|
|
2021-01-07 09:30:50 +08:00
|
|
|
# step3: start the new-etcd node
|
2019-02-24 12:56:47 +08:00
|
|
|
- hosts: "{{ NODE_TO_ADD }}"
|
|
|
|
vars:
|
|
|
|
CLUSTER_STATE: existing
|
2019-02-14 14:13:13 +08:00
|
|
|
roles:
|
2021-01-19 23:35:31 +08:00
|
|
|
- { role: os-harden, when: "OS_HARDEN|bool" }
|
2019-06-01 09:24:43 +08:00
|
|
|
- { role: chrony, when: "groups['chrony']|length > 0" }
|
2019-02-24 12:56:47 +08:00
|
|
|
- prepare
|
2019-02-14 14:13:13 +08:00
|
|
|
- etcd
|