add new backup via restic
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
parent
bb844234de
commit
b5c67b6da9
1 changed files with 32 additions and 0 deletions
32
backup-via-restic
Executable file
32
backup-via-restic
Executable file
|
@ -0,0 +1,32 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# Nico Schottelius, 2024-09-18, Deokso
|
||||||
|
# Mainly written for my notebooks
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
|
# Run before: restic -r s3:${endpoint}/${bucket_name}/restic init
|
||||||
|
|
||||||
|
name=nico
|
||||||
|
endpoint=s3.k8s.place5.ungleich.ch
|
||||||
|
|
||||||
|
export KUBECONFIG=~/k8s/p5-admin.conf
|
||||||
|
|
||||||
|
bucket_name=$(kubectl -n rook-ceph get configmap -o yaml ${name}-bucket-claim | yq .data.BUCKET_NAME)
|
||||||
|
|
||||||
|
export AWS_ACCESS_KEY_ID=$(kubectl -n rook-ceph get secrets -o yaml ${name}-bucket-claim | yq .data.AWS_ACCESS_KEY_ID | base64 -d ; echo "")
|
||||||
|
export AWS_SECRET_ACCESS_KEY=$(kubectl -n rook-ceph get secrets -o yaml ${name}-bucket-claim | yq .data.AWS_SECRET_ACCESS_KEY | base64 -d ; echo "")
|
||||||
|
|
||||||
|
|
||||||
|
repo=s3:${endpoint}/${bucket_name}/restic
|
||||||
|
|
||||||
|
export RESTIC_PASSWORD="$(pass git co nico-privat >/dev/null 2>&1; pass notebook/restic-password)"
|
||||||
|
|
||||||
|
restic -r ${repo} backup \
|
||||||
|
--exclude ~/Nextcloud \
|
||||||
|
--exclude ~/movies/ \
|
||||||
|
--exclude ~/.cdist \
|
||||||
|
--exclude ~/.cache \
|
||||||
|
--exclude ~/.config/**/cache \
|
||||||
|
~/
|
||||||
|
|
||||||
|
restic -r ${repo} forget --keep-last 20 --prune
|
Loading…
Reference in a new issue