- Velero CLI Installation
wget https://github.com/vmware-tanzu/velero/releases/download/v1.7.0/velero-v1.7.0-linux-amd64.tar.gz
tar -xvf velero-v1.7.0-linux-amd64.tar.gz -C /tmp
sudo mv /tmp/velero-v1.7.0-linux-amd64/velero /usr/local/bin
velero version
- AWS Credentails Setup
[default]
aws_access_key_id=
aws_secret_access_key=
- Velero installation to K8
export BUCKET=velero-terraform-backuppp # name of your bucket
export REGION=us-east-1
[default]
aws_access_key_id = YOUR_ACCESS_KEY_ID
aws_secret_access_key = YOUR_SECRET_ACCESS_KEY
[default]
region = us-east-1
aws_access_key_id = AKIAQCXR5UFBHATIRAMG
aws_secret_access_key = LTA2BWzmidvlkIwrDrtyhy/tNz2sZjhhJTeWBziz
velero install \
--provider aws \
--plugins velero/velero-plugin-for-aws:v1.3.0 \
--bucket $BUCKET \
--backup-location-config region=$REGION \
--snapshot-location-config region=$REGION \
--secret-file ./credentials
NB: make sure you are runing the velero install command in this diretory .aws configure
```bash
kubectl get pods -n velero # to check velero pod and see if velero is install
- Creating application
create a deployment and a service so that velero will have something to backup
velero backup-location get
- Create backup
velero backup create cluster-backup
velero backup-location get
- Restore backup
velero restore create new-backup-restore --from-backup new-backup
- Scheduled backup
velero schedule create every5min --schedule="*/5 * * * *" --include-namespaces test --ttl 0h15m0s