kubeasz/playbooks/21.addetcd.yml

46 lines
1.5 KiB
YAML
Raw Normal View History

2019-02-14 14:13:13 +08:00
# add new-etcd node, one at a time
- 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
- 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 \
endpoint health; \
done'
register: ETCD_CLUSTER_STATUS
2020-11-19 20:19:27 +08:00
- debug: var="ETCD_CLUSTER_STATUS"
- name: get a running ectd node
shell: 'echo -e "{{ ETCD_CLUSTER_STATUS.stdout }}" \
"{{ ETCD_CLUSTER_STATUS.stderr }}" \
|grep "is healthy"|sed -n "1p"|cut -d: -f2|cut -d/ -f3'
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 }} \
--peer-urls=https://{{ NODE_TO_ADD }}:2380"
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
- 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" }
- prepare
2019-02-14 14:13:13 +08:00
- etcd