Chapter 13
- Correct answer: (A) True. Velero backups can only use an S3 target to store backups.
- Correct answer: (C) Install MinIO and use the NFS volumes as persistent disks in the deployment phase. You can install MinIO and use any persistent volumes with the deployment. MinIO will present the allocated storage as a S3 bucket, which are compatible with MinIO.
- Correct answer: (B) False. One of Velero's features is the ability to use a backup from one cluster to restore namespaces and objects in a different cluster.
- Correct answer: (D) etcdctl. etcdctl has an option to create a snapshot of the ETCD database.
- Correct answer: (D)
Velero create schedule daily-backup --schedule="0 3 * * *"
. This command will create a scheduled backup job that runs at 3 a.m. every day. The schedule command accepts a tag called–schedule
that uses cron expressions.0 3 * * *
is a cron expression for 3 A.M. every day.