kubeasz/23.backup.yml

66 lines
2.0 KiB
YAML
Raw Normal View History

# 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
tasks:
# 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 \
--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
2019-07-25 22:43:47 +08:00
ignore_errors: true
2019-07-23 11:35:39 +08:00
- 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"
2020-09-09 10:03:14 +08:00
- name: get current time
set_fact: temp="{{lookup('pipe','date \"+%Y%m%d_%H%M\"')}}"
2019-07-25 22:43:47 +08:00
# step2: backup data on the healthy member
- name: make a backup on etcd node
shell: "mkdir -p /etcd_backup && cd /etcd_backup && \
2020-09-09 10:03:14 +08:00
ETCDCTL_API=3 {{ bin_dir }}/etcdctl snapshot save snapshot_{{ temp }}.db"
args:
warn: false
2019-07-23 11:35:39 +08:00
delegate_to: "{{ RUNNING_NODE.stdout }}"
2019-07-25 22:43:47 +08:00
- name: fetch the backup data
fetch:
src: /etcd_backup/snapshot_{{ temp }}.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:
- localhost
2018-07-23 16:58:12 +08:00
tasks:
- name: Backing up ansible hosts-1
2018-07-23 16:58:12 +08:00
copy:
src: "{{ base_dir }}/hosts"
dest: "{{ base_dir }}/.cluster/backup/hosts"
2018-07-23 16:58:12 +08:00
register: p
- name: Backing up ansible hosts-2
shell: "cd {{ base_dir }}/.cluster/backup && \
2018-07-23 16:58:12 +08:00
cp -fp hosts hosts-$(date +'%Y%m%d%H%M')"
when: 'p is changed'
2018-07-23 16:58:12 +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"