Coder Social home page Coder Social logo

k8s-backup-restore's Introduction

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=k8-backup
export REGION=ap-south-1
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-velero
kubectl get pods -n velero
  1. Creating application
kubectl create deployment testing --image=nginx --replicas=2
kubectl expose deployment testing --name=test-srv --type=NodePort --port=80
kubectl port-forward svc/test-srv 8000:80
velero backup-location get
  1. Create backup
velero backup create cluster-backup --include-namespaces myns
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

k8s-backup-restore's People

Contributors

adityajoshi12 avatar singhritesh85 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.