Add backup.sh

This commit is contained in:
2023-04-06 14:05:02 +02:00
parent 3f8741e0c5
commit e9340219bc
3 changed files with 70 additions and 0 deletions

View File

@@ -15,4 +15,6 @@ RUN apk add --update --no-cache ca-certificates fuse openssh-client tzdata jq cu
COPY --from=builder /go/src/github.com/restic/restic/restic /usr/bin COPY --from=builder /go/src/github.com/restic/restic/restic /usr/bin
ADD backup.sh /usr/local/bin/backup.sh
ENTRYPOINT ["/usr/bin/restic"] ENTRYPOINT ["/usr/bin/restic"]

View File

@@ -6,3 +6,55 @@ Restic image for various platforms.
Just run `make` to build and push everything. Check `ORG` and `PLATFORMS` Just run `make` to build and push everything. Check `ORG` and `PLATFORMS`
variables to customize. variables to customize.
## Usage
You can use this image as regular restic image or use built-in cron and
backup.sh script which can be useful for example in statefulsets:
```yaml
- name: backup
image: genunix/restic:latest
imagePullPolicy: Always
command:
- /bin/sh
- -cxe
- |
echo "0 3 * * * /bin/sh -e /usr/local/bin/backup.sh" > /var/spool/cron/crontabs/root;
crond -f
env:
- name: NODE
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: TAG
value: myapp
- name: INSTANCE
value: "${TAG}-${NODE}"
- name: BACKUP_PATH
value: /srv/zwave-js-ui
- name: RESTIC_REPOSITORY
value: "s3:https://s3.eu-central-1.wasabisys.com/backups/${INSTANCE}"
- name: RESTIC_PASSWORD
valueFrom:
secretKeyRef:
name: restic-rest-secret
key: RESTIC_PASSWORD
- name: AWS_ACCESS_KEY_ID
valueFrom:
secretKeyRef:
name: restic-rest-secret
key: AWS_ACCESS_KEY_ID
- name: AWS_SECRET_ACCESS_KEY
valueFrom:
secretKeyRef:
name: restic-rest-secret
key: AWS_SECRET_ACCESS_KEY
volumeMounts:
- name: data
mountPath: /srv/mysvc
```
This image also sends metrics into prometheus-pushgateway service which needs
to be configured properly.

16
backup.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/sh -e
INSTANCE="$(echo ${INSTANCE:-${TAG}} | envsubst)"
export RESTIC_REPOSITORY="$(echo ${RESTIC_REPOSITORY} | envsubst)"
restic cat config >/dev/null || restic init
restic backup --verbose --tag ${TAG} ${BACKUP_PATH}
restic forget --prune --tag ${TAG} -g paths,tags --keep-hourly 12 --keep-daily 7 --keep-monthly 3
# Metrics
restic stats --json latest > /tmp/stats.json
restic snapshots --json latest > /tmp/snapshots.json
cat /tmp/stats.json | jq -r '"restic_stats_total_size_bytes \(.total_size)\nrestic_stats_total_file_count \(.total_file_count)"' > /tmp/output
cat /tmp/snapshots.json | jq -r 'max_by(.time) | .time | sub(".[0-9]+Z$"; "Z") | fromdate | "restic_stats_last_snapshot_timestamp \(.)"' >> /tmp/output
cat /tmp/output | curl --data-binary @- "http://prometheus-pushgateway.monitoring.svc.cluster.local:9091/metrics/job/backup/instance/${INSTANCE}"