2018-09-29 09:06:19 +08:00
|
|
|
# cluster-backup playbook
|
|
|
|
# read the guide: 'op/cluster_restore.md'
|
2018-07-23 16:58:12 +08:00
|
|
|
|
|
|
|
- hosts:
|
2019-07-23 11:35:39 +08:00
|
|
|
- localhost
|
2019-07-03 17:50:25 +08:00
|
|
|
tasks:
|
2020-11-19 19:59:15 +08:00
|
|
|
# step1: find a healthy member in the etcd cluster
|
2019-07-23 11:35:39 +08:00
|
|
|
- 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:35:39 +08:00
|
|
|
endpoint health; \
|
|
|
|
done'
|
|
|
|
register: ETCD_CLUSTER_STATUS
|
2019-07-25 22:43:47 +08:00
|
|
|
ignore_errors: true
|
2019-07-23 11:35:39 +08:00
|
|
|
|
2020-11-19 20:19:27 +08:00
|
|
|
- debug: var="ETCD_CLUSTER_STATUS"
|
2019-07-23 11:35:39 +08:00
|
|
|
|
|
|
|
- name: get a running ectd node
|
2021-01-07 09:30:50 +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:35:39 +08:00
|
|
|
register: RUNNING_NODE
|
|
|
|
|
|
|
|
- debug: var="RUNNING_NODE.stdout"
|
|
|
|
|
2020-09-09 10:03:14 +08:00
|
|
|
- name: get current time
|
2021-04-13 20:36:17 +08:00
|
|
|
shell: "date +'%Y%m%d%H%M'"
|
|
|
|
register: timestamp
|
2020-09-09 10:03:14 +08:00
|
|
|
|
2022-11-15 22:16:36 +08:00
|
|
|
# step2: backup data to the ansible node
|
2021-01-07 09:30:50 +08:00
|
|
|
- name: make a backup on the etcd node
|
2022-11-15 22:16:36 +08:00
|
|
|
shell: "mkdir -p {{ cluster_dir }}/backup && cd {{ cluster_dir }}/backup && \
|
|
|
|
ETCDCTL_API=3 {{ base_dir }}/bin/etcdctl \
|
|
|
|
--endpoints=https://{{ RUNNING_NODE.stdout }}:2379 \
|
|
|
|
--cacert={{ cluster_dir }}/ssl/ca.pem \
|
|
|
|
--cert={{ cluster_dir }}/ssl/etcd.pem \
|
|
|
|
--key={{ cluster_dir }}/ssl/etcd-key.pem \
|
|
|
|
snapshot save snapshot_{{ timestamp.stdout }}.db"
|
2019-07-03 17:50:25 +08:00
|
|
|
args:
|
|
|
|
warn: false
|
2018-07-23 16:58:12 +08:00
|
|
|
|
2021-01-07 09:30:50 +08:00
|
|
|
- name: update the latest backup
|
2021-04-13 20:36:17 +08:00
|
|
|
shell: 'cd {{ cluster_dir }}/backup/ && /bin/cp -f snapshot_{{ timestamp.stdout }}.db snapshot.db'
|