HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

velero — Backup and migrate Kubernetes applications and their persistent volumes. More information: <https://

Submitted by: @import:tldr-pages··
0
Viewed 0 times
backupcommandveleroandclikubernetesapplicationsmigrate

Problem

How to use the velero command: Backup and migrate Kubernetes applications and their persistent volumes. More information: <https://velero.io/docs/main/>.

Solution

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}}

Code Snippets

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}}

Context

tldr-pages: common/velero

Revisions (0)

No revisions yet.