diff options
| author | Jing Xu <jinxu@google.com> | 2018-08-21 15:52:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-21 15:52:01 -0700 |
| commit | 12fc30dadbf700150a8553ffb764405c12c74b48 (patch) | |
| tree | 8969dfee91cd6494e99456d34757e484bad2ad68 | |
| parent | c900a728c33bdc6752dd60d61c5369719f589f7e (diff) | |
Update data-source.md
| -rw-r--r-- | contributors/design-proposals/storage/data-source.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contributors/design-proposals/storage/data-source.md b/contributors/design-proposals/storage/data-source.md index 796be7c1..fa03b553 100644 --- a/contributors/design-proposals/storage/data-source.md +++ b/contributors/design-proposals/storage/data-source.md @@ -23,6 +23,8 @@ type TypedLocalObjectReference struct { Name string // Kind indicates the type of the object reference. Kind string + // APIGroup is the group for the resource being referenced + APIGroup string } ``` @@ -46,18 +48,16 @@ type PersistentVolumeStatus struct { type PersistentVolumeConditionType string -// These are valid conditions of Pvc +// These are valid conditions of PersistentVolume const ( // An user trigger resize of pvc has been started - PersistentVolumeDataPopulated PersistentVolumeConditionType = "dataPopulated" + PersistentVolumeDataPopulated PersistentVolumeConditionType = "DataPopulated" ) type PersistentVolumeCondition struct { Type PersistentVolumeConditionType Status ConditionStatus // +optional - LastProbeTime metav1.Time - // +optional LastTransitionTime metav1.Time // +optional Reason string |
