1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 23:42:07 +02:00
tldr/pages/common/velero.md
2019-07-01 15:08:38 +01:00

24 lines
630 B
Markdown

# velero
> Backup and migrate Kubernetes applications and their persistent volumes.
> More information: <https://github.com/heptio/velero>.
- 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}}`