11 lines
353 B
Bash
11 lines
353 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
|
||
|
velero install \
|
||
|
--provider aws \
|
||
|
--bucket futureporn-db-backup \
|
||
|
--plugins velero/velero-plugin-for-aws:v1.10.0 \
|
||
|
--namespace=futureporn \
|
||
|
--secret-file=.env.velero \
|
||
|
--use-volume-snapshots=false \
|
||
|
--backup-location-config region=us-west-000,s3ForcePathStyle="true",s3Url=https://s3.us-west-000.backblazeb2.com
|