mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-05-28 04:04:39 -04:00
Modify comments for DataSource
This commit is contained in:
parent
5a6c5b07a2
commit
46fdfeb4eb
2 changed files with 10 additions and 4 deletions
|
|
@ -415,7 +415,10 @@ type PersistentVolumeClaimSpec struct {
|
|||
VolumeMode *PersistentVolumeMode
|
||||
// If specified, volume will be prepopulated with data from the specified data source.
|
||||
// This depends on the provisioner for this volume being able to use the specified source.
|
||||
// If the provisioner does not support it, it will fail to provision the volume.
|
||||
// If the provisioner does not support it, it will create an empty volume.
|
||||
// It requires the VolumeSnapshotDataSource alpha feature gate to be enabled and
|
||||
// currently VolumeSnapshot is the only supported data source.
|
||||
// In the future, we will allow more data source types when new feature is ready.
|
||||
// +optional
|
||||
DataSource *TypedLocalObjectReference
|
||||
}
|
||||
|
|
|
|||
|
|
@ -458,9 +458,12 @@ type PersistentVolumeClaimSpec struct {
|
|||
// This is an alpha feature and may change in the future.
|
||||
// +optional
|
||||
VolumeMode *PersistentVolumeMode `json:"volumeMode,omitempty" protobuf:"bytes,6,opt,name=volumeMode,casttype=PersistentVolumeMode"`
|
||||
// If specified, volume will be prepopulated with data from the specified data source.
|
||||
// This depends on the provisioner for this volume being able to use the specified source.
|
||||
// If the provisioner does not support it, it will fail to provision the volume.
|
||||
// If specified, volume will be prepopulated with data from the specified data source.
|
||||
// This depends on the provisioner for this volume being able to use the specified source.
|
||||
// If the provisioner does not support it, it will create an empty volume.
|
||||
// It requires the VolumeSnapshotDataSource alpha feature gate to be enabled and
|
||||
// currently VolumeSnapshot is the only supported data source.
|
||||
// In the future, we will allow more data source types when new feature is ready.
|
||||
// +optional
|
||||
DataSource *TypedLocalObjectReference `json:"dataSource" protobuf:"bytes,7,opt,name=dataSource"`
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue