diff options
| author | Jing Xu <jinxu@google.com> | 2018-08-23 12:16:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-23 12:16:10 -0700 |
| commit | 7eb005ce301b93a4babcd8120413a3d580b49517 (patch) | |
| tree | 1249cd6c27d06b2ff45efc26050d330958fc3124 | |
| parent | 127a5b7526bfb58e97c33e0f9c65432f00786397 (diff) | |
Update csi-snapshot.md
| -rw-r--r-- | contributors/design-proposals/storage/csi-snapshot.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contributors/design-proposals/storage/csi-snapshot.md b/contributors/design-proposals/storage/csi-snapshot.md index 4c7ac60e..c882aa50 100644 --- a/contributors/design-proposals/storage/csi-snapshot.md +++ b/contributors/design-proposals/storage/csi-snapshot.md @@ -178,6 +178,10 @@ type VolumeSnapshotContentSpec struct { // taken from. It becomes non-nil when VolumeSnapshot and VolumeSnapshotContent are bound. // +optional PersistentVolumeRef *core_v1.ObjectReference `json:"persistentVolumeRef" protobuf:"bytes,3,opt,name=persistentVolumeRef"` + // Name of the VolumeSnapshotClass used by the VolumeSnapshotContent. If not specified, a default snapshot class will + // be used if it is available. + // +optional + VolumeSnapshotClassName *string `json:"snapshotClassName" protobuf:"bytes,4,opt,name=snapshotClassName"` } // VolumeSnapshotSource represents the actual location and type of the snapshot. Only one of its members may be specified. |
