kubeasz/23.backup.yml

52 lines
1.4 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:
- etcd
roles:
- cluster-backup
- hosts:
- deploy
tasks:
- name: Creating backup dirs
2018-07-23 16:58:12 +08:00
file: name={{ item }} state=directory
with_items:
- "{{ base_dir }}/roles/cluster-backup/files/ca"
- "{{ base_dir }}/roles/cluster-backup/files/hosts"
- "{{ base_dir }}/roles/cluster-backup/files/snapshot"
- name: Backing up CA sth
2018-07-23 16:58:12 +08:00
copy:
src: "{{ ca_dir }}/{{ item }}"
dest: "{{ base_dir }}/roles/cluster-backup/files/ca/{{ item }}"
with_items:
- ca.pem
- ca-key.pem
- ca.csr
- ca-csr.json
- ca-config.json
- name: Backing up ansible hosts-1
2018-07-23 16:58:12 +08:00
copy:
src: "{{ base_dir }}/hosts"
dest: "{{ base_dir }}/roles/cluster-backup/files/hosts/hosts"
register: p
- name: Backing up ansible hosts-2
2018-07-23 16:58:12 +08:00
shell: "cd {{ base_dir }}/roles/cluster-backup/files/hosts && \
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-1
2018-07-23 16:58:12 +08:00
copy:
src: "{{ base_dir }}/roles/cluster-backup/files/snapshot.db"
dest: "{{ base_dir }}/roles/cluster-backup/files/snapshot/snapshot.db"
register: q
- name: Backing up etcd snapshot-2
2018-07-23 16:58:12 +08:00
shell: "cd {{ base_dir }}/roles/cluster-backup/files/ && \
mv -f snapshot.db snapshot/snapshot-$(date +'%Y%m%d%H%M').db"
when: 'q is changed'
2018-07-23 16:58:12 +08:00