Does an S3 sync to a particular bucket

Fred Damstra (k8s1) f8d25d606b More reasonable dockerfile hace 2 años
.gitignore 64c4bfab4a Hyphens are superior hace 2 años
Dockerfile f8d25d606b More reasonable dockerfile hace 2 años
LICENSE 163ed904b8 Initial commit hace 2 años
README.md 15a89e4c6e maybea buld hace 2 años
aws-backup.sh 15a89e4c6e maybea buld hace 2 años
k8s.update-route53.yaml 7ccecb3a6d Cron Enabled hace 2 años
kaniko-aws-backup.yaml f8d25d606b More reasonable dockerfile hace 2 años

README.md

aws-backup

Sync a source directory to s3 in aws

Mount a volume to /source

This is what you want to backup.

Create a set of environment variable secrets

kubectl create secret generic aws-creds \
  --from-literal=AWS_ACCESS_KEY_ID=BLAH \
  --from-literal=AWS_SECRET_ACCESS_KEY=BLAH
kubectl create secret generic update-route53 \
  --from-literal=ZONEID=A1B2C3D4 \
  --from-literal=RECORDSET=host.example.com

you must set the following env variables

DEST_S3 the destination URL to sync to. s3:// expected.

AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_DEFAULT_REGION