Documentation

Backup Repository Configuration

Velero uses selectable backup repositories for various backup/restore methods, i.e., file-system backup, CSI snapshot data movement, etc. To achieve the best performance, backup repositories may need to be configured according to the running environments.

Velero uses a BackupRepository CR to represent the instance of the backup repository. Now, a new field repositoryConfig is added to support various configurations to the underlying backup repository.

Velero also allows you to specify configurations before the BackupRepository CR is created through a configMap. The configurations in the configMap will be copied to the BackupRepository CR when it is created at the due time.
The configMap should be in the same namespace where Velero is installed. If multiple Velero instances are installed in different namespaces, there should be one configMap in each namespace which applies to Velero instance in that namespace only. The name of the configMap should be specified in the Velero server parameter --backup-repository-configmap.

The users can specify the ConfigMap name during velero installation by CLI: velero install --backup-repository-configmap=<ConfigMap-Name>

Conclusively, you have two ways to add/change/delete configurations of a backup repository:

  • If the BackupRepository CR for the backup repository is already there, you should modify the repositoryConfig field. The new changes will be applied to the backup repository at the due time, it doesn’t require Velero server to restart.
  • Otherwise, you can create the backup repository configMap as a template for the BackupRepository CRs that are going to be created.

The backup repository configMap is repository type (i.e., kopia, restic) specific, so for one repository type, you only need to create one set of configurations, they will be applied to all BackupRepository CRs of the same type. Whereas, the changes of repositoryConfig field apply to the specific BackupRepository CR only, you may need to change every BackupRepository CR of the same type.

Below is an example of the BackupRepository configMap with the configurations:

apiVersion: v1
kind: ConfigMap
metadata:
  name: <config-name>
  namespace: velero
data:
  <kopia>: |
    {
      "cacheLimitMB": 2048    
    }
  <other-repository-type>: |
    {
      "cacheLimitMB": 1024   
    } 

To create the configMap, you need to save something like the above sample to a file and then run below commands:

kubectl apply -f <yaml-file-name>

When and how the configurations are used is decided by the backup repository itself. Though you can specify any configuration to the configMap or repositoryConfig, the configuration may/may not be used by the backup repository, or the configuration may be used at an arbitrary time.

Below is the supported configurations by Velero and the specific backup repository.
Kopia repository:
cacheLimitMB: specifies the size limit(in MB) for the local data cache. The more data is cached locally, the less data may be downloaded from the backup storage, so the better performance may be achieved. Practically, you can specify any size that is smaller than the free space so that the disk space won’t run out. This parameter is for repository connection, that is, you could change it before connecting to the repository. E.g., before a backup/restore/maintenance.

Getting Started

To help you get started, see the documentation.