diff options
| author | Jing Xu <jinxu@google.com> | 2018-08-20 11:06:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-20 11:06:07 -0700 |
| commit | bac19f0b0dc8d0edb850fb527efabf40670b5c44 (patch) | |
| tree | 364fadaf5d8b64ecc664c5f9b021bb598898fc69 | |
| parent | 29c02bc1d61247f039de39eacaccfb4356f8d534 (diff) | |
Update data-source.md
| -rw-r--r-- | contributors/design-proposals/storage/data-source.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contributors/design-proposals/storage/data-source.md b/contributors/design-proposals/storage/data-source.md index d5feba0e..64c9fc83 100644 --- a/contributors/design-proposals/storage/data-source.md +++ b/contributors/design-proposals/storage/data-source.md @@ -21,7 +21,7 @@ type PersistentVolumeClaimSpec struct { type PersistentVolumeSpec struct { // If specified, volume was pre-populated with data from the specified data source. // +optional - DataSource *ypedLocalObjectReference `json:"dataSourceRef" protobuf:"bytes,2,opt,name=dataSourceRef"` + DataSource *TypedLocalObjectReference `json:"dataSourceRef" protobuf:"bytes,2,opt,name=dataSourceRef"` } // TypedLocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. @@ -43,7 +43,7 @@ apiVersion: snapshot.storage.k8s.io/v1alpha1 kind: VolumeSnapshot metadata: name: snapshot-pd-1 - namespace: myns + namespace: mynamespace spec: source: kind: PersistentVolumeClaim @@ -58,7 +58,7 @@ kind: PersistentVolumeClaim apiVersion: v1 metadata: name: snapshot-pvc - Namespace: myns + Namespace: mynamespace spec: accessModes: - ReadWriteOnce @@ -78,7 +78,7 @@ kind: PersistentVolumeClaim apiVersion: v1 metadata: name: clone-pvc - Namespace: myns + Namespace: mynamespace spec: accessModes: - ReadWriteOnce @@ -98,7 +98,7 @@ kind: PersistentVolumeClaim apiVersion: v1 metadata: name: clone-pvc - Namespace: myns + Namespace: mynamespace spec: accessModes: - ReadWriteOnce |
