LinuxCommandLibrary

velero

velero

TLDR

Create a backup containing all resources

$ velero backup create [backup_name]
copy


List all backups
$ velero backup get
copy


Delete a backup
$ velero backup delete [backup_name]
copy


Create a weekly backup, each living for 90 days (2160 hours)
$ velero schedule create [schedule_name] --schedules="[@every 7d]" --ttl [2160h0m0s]
copy


Create a restore from the latest successful backup triggered by specific schedule
$ velero restore create --from-schedule [schedule_name]
copy

Copied to clipboard