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:
|
2019-07-23 11:35:39 +08:00
|
|
|
# 寻找etcd集群中第一个健康节点
|
|
|
|
- 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 \
|
|
|
|
--cacert={{ base_dir }}/.cluster/ssl/ca.pem \
|
|
|
|
--cert={{ base_dir }}/.cluster/ssl/admin.pem \
|
|
|
|
--key={{ base_dir }}/.cluster/ssl/admin-key.pem \
|
|
|
|
endpoint health; \
|
|
|
|
done'
|
|
|
|
register: ETCD_CLUSTER_STATUS
|
|
|
|
|
|
|
|
- debug: var="ETCD_CLUSTER_STATUS.stdout"
|
|
|
|
|
|
|
|
- name: get a running ectd node
|
|
|
|
shell: 'echo -e "{{ ETCD_CLUSTER_STATUS.stdout }}"|grep "is healthy"|sed -n "1p"|cut -d: -f2|cut -d/ -f3'
|
|
|
|
register: RUNNING_NODE
|
|
|
|
|
|
|
|
- debug: var="RUNNING_NODE.stdout"
|
|
|
|
|
|
|
|
# 在健康etcd节点上执行数据备份
|
2019-07-03 17:50:25 +08:00
|
|
|
- name: 执行etcd 数据备份
|
|
|
|
shell: "mkdir -p /etcd_backup && cd /etcd_backup && \
|
|
|
|
ETCDCTL_API=3 {{ bin_dir }}/etcdctl snapshot save snapshot.db"
|
|
|
|
args:
|
|
|
|
warn: false
|
2019-07-23 11:35:39 +08:00
|
|
|
delegate_to: "{{ RUNNING_NODE.stdout }}"
|
2019-07-03 17:50:25 +08:00
|
|
|
|
|
|
|
- name: 获取etcd 数据备份
|
|
|
|
fetch:
|
|
|
|
src: /etcd_backup/snapshot.db
|
|
|
|
dest: "{{ base_dir }}/.cluster/backup/"
|
|
|
|
flat: yes
|
2019-07-23 11:35:39 +08:00
|
|
|
delegate_to: "{{ RUNNING_NODE.stdout }}"
|
2018-07-23 16:58:12 +08:00
|
|
|
|
|
|
|
- hosts:
|
2019-07-03 17:50:25 +08:00
|
|
|
- localhost
|
2018-07-23 16:58:12 +08:00
|
|
|
tasks:
|
2018-09-29 09:06:19 +08:00
|
|
|
- name: Backing up ansible hosts-1
|
2018-07-23 16:58:12 +08:00
|
|
|
copy:
|
|
|
|
src: "{{ base_dir }}/hosts"
|
2019-07-03 17:50:25 +08:00
|
|
|
dest: "{{ base_dir }}/.cluster/backup/hosts"
|
2018-07-23 16:58:12 +08:00
|
|
|
register: p
|
|
|
|
|
2018-09-29 09:06:19 +08:00
|
|
|
- name: Backing up ansible hosts-2
|
2019-07-03 17:50:25 +08:00
|
|
|
shell: "cd {{ base_dir }}/.cluster/backup && \
|
2018-07-23 16:58:12 +08:00
|
|
|
cp -fp hosts hosts-$(date +'%Y%m%d%H%M')"
|
2018-09-29 09:06:19 +08:00
|
|
|
when: 'p is changed'
|
2018-07-23 16:58:12 +08:00
|
|
|
|
2019-07-03 17:50:25 +08:00
|
|
|
- name: Backing up etcd snapshot with datetime
|
|
|
|
shell: "cd {{ base_dir }}/.cluster/backup && \
|
|
|
|
cp -fp snapshot.db snapshot-$(date +'%Y%m%d%H%M').db"
|