logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Velero - Backup Kubernetes Apps | Online Free DevTools by Hexmos

Backup Kubernetes applications with Velero. Secure your data, migrate clusters, and restore applications with ease. Free online tool, no registration required.

velero

Backup and migrate Kubernetes applications and their persistent volumes. More information: https://velero.io/docs/main/.

  • Create a backup containing all resources:

velero backup create {{backup_name}}

  • List all backups:

velero backup get

  • Delete a backup:

velero backup delete {{backup_name}}

  • Create a weekly backup, each living for 90 days (2160 hours):

velero schedule create {{schedule_name}} --schedules="{{@every 7d}}" --ttl {{2160h0m0s}}

  • Create a restore from the latest successful backup triggered by specific schedule:

velero restore create --from-schedule {{schedule_name}}

See Also