80 lines
2.6 KiB
YAML
80 lines
2.6 KiB
YAML
---
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
annotations:
|
|
controller-gen.kubebuilder.io/version: (unknown)
|
|
labels:
|
|
component: velero
|
|
name: volumesnapshotlocations.velero.io
|
|
spec:
|
|
group: velero.io
|
|
names:
|
|
kind: VolumeSnapshotLocation
|
|
listKind: VolumeSnapshotLocationList
|
|
plural: volumesnapshotlocations
|
|
singular: volumesnapshotlocation
|
|
scope: ""
|
|
validation:
|
|
openAPIV3Schema:
|
|
description: VolumeSnapshotLocation is a location where Velero stores volume
|
|
snapshots.
|
|
properties:
|
|
apiVersion:
|
|
description: 'APIVersion defines the versioned schema of this representation
|
|
of an object. Servers should convert recognized schemas to the latest
|
|
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
|
|
type: string
|
|
kind:
|
|
description: 'Kind is a string value representing the REST resource this
|
|
object represents. Servers may infer this from the endpoint the client
|
|
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
|
|
type: string
|
|
metadata:
|
|
type: object
|
|
spec:
|
|
description: VolumeSnapshotLocationSpec defines the specification for
|
|
a Velero VolumeSnapshotLocation.
|
|
properties:
|
|
config:
|
|
additionalProperties:
|
|
type: string
|
|
description: Config is for provider-specific configuration fields.
|
|
type: object
|
|
provider:
|
|
description: Provider is the provider of the volume storage.
|
|
type: string
|
|
required:
|
|
- provider
|
|
type: object
|
|
status:
|
|
description: VolumeSnapshotLocationStatus describes the current status
|
|
of a Velero VolumeSnapshotLocation.
|
|
properties:
|
|
phase:
|
|
description: VolumeSnapshotLocationPhase is the lifecycle phase of
|
|
a Velero VolumeSnapshotLocation.
|
|
enum:
|
|
- Available
|
|
- Unavailable
|
|
type: string
|
|
type: object
|
|
type: object
|
|
version: v1
|
|
versions:
|
|
- name: v1
|
|
served: true
|
|
storage: true
|
|
---
|
|
apiVersion: velero.io/v1
|
|
kind: VolumeSnapshotLocation
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
component: velero
|
|
name: default
|
|
namespace: velero
|
|
spec:
|
|
config:
|
|
region: us-east-2
|
|
provider: aws |