Skip to content

Latest commit

 

History

History
81 lines (57 loc) · 1.75 KB

README.md

File metadata and controls

81 lines (57 loc) · 1.75 KB

Kubernetes Backup and Restore

IMAGE ALT TEXT

  1. 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
  1. AWS Credentails Setup
[default]
aws_access_key_id=
aws_secret_access_key=
  1. 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
  1. Creating application

create a deployment and a service so that velero will have something to backup

velero backup-location get
  1. Create backup
velero backup create cluster-backup
velero backup-location get
  1. Restore backup
velero restore create new-backup-restore --from-backup new-backup
  1. Scheduled backup
velero schedule create every5min --schedule="*/5 * * * *" --include-namespaces test --ttl 0h15m0s