Documentation for version v1.1.0 is no longer actively maintained. The version you are currently viewing is a static snapshot. For up-to-date documentation, see the latest version.
A volume snapshot location is the location in which to store the volume snapshots created for a backup.
Velero can be configured to take snapshots of volumes from multiple providers. Velero also allows you to configure multiple possible VolumeSnapshotLocation
per provider, although you can only select one location per provider at backup time.
Each VolumeSnapshotLocation describes a provider + location. These are represented in the cluster via the VolumeSnapshotLocation
CRD. Velero must have at least one VolumeSnapshotLocation
per cloud provider.
A sample YAML VolumeSnapshotLocation
looks like the following:
apiVersion: velero.io/v1
kind: VolumeSnapshotLocation
metadata:
name: aws-default
namespace: velero
spec:
provider: aws
config:
region: us-west-2
profile: "default"
The configurable parameters are as follows:
Key | Type | Default | Meaning |
---|---|---|---|
provider |
String (Velero natively supports aws , gcp , and azure . Other providers may be available via external plugins.) |
Required Field | The name for whichever cloud provider will be used to actually store the volume. |
config |
See the corresponding AWS, GCP, and Azure-specific configs or your provider’s documentation. |
Key | Type | Default | Meaning |
---|---|---|---|
region |
string | Empty | Example: “us-east-1”See AWS documentation for the full list.Required. |
profile |
string | “default” | AWS profile within the credential file to use for given store |
Key | Type | Default | Meaning |
---|---|---|---|
apiTimeout |
metav1.Duration | 2m0s | How long to wait for an Azure API request to complete before timeout. |
resourceGroup |
string | Optional | The name of the resource group where volume snapshots should be stored, if different from the cluster’s resource group. |
Key | Type | Default | Meaning |
---|---|---|---|
snapshotLocation |
string | Empty | Example: “us-central1”See GCP documentation for the full list.If not specified the snapshots are stored in the default location. |
project |
string | Empty | The project ID where snapshots should be stored, if different than the project that your IAM account is in. Optional. |
To help you get started, see the documentation.