@@ -172,7 +172,7 @@ pub struct Binding {
172
172
}
173
173
/// Represents storage that is managed by an external CSI volume driver (Beta feature)
174
174
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
175
- pub struct CsiPersistentVolumeSource {
175
+ pub struct CSIPersistentVolumeSource {
176
176
/// driver is the name of the driver to use for this volume.
177
177
/// Required.
178
178
#[ prost( string, optional, tag = "1" ) ]
@@ -240,7 +240,7 @@ pub struct CsiPersistentVolumeSource {
240
240
}
241
241
/// Represents a source location of a volume to mount, managed by an external CSI driver
242
242
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
243
- pub struct CsiVolumeSource {
243
+ pub struct CSIVolumeSource {
244
244
/// driver is the name of the CSI driver that handles this volume.
245
245
/// Consult with your admin for the correct name as registered in the cluster.
246
246
#[ prost( string, optional, tag = "1" ) ]
@@ -1140,16 +1140,16 @@ pub struct DaemonEndpoint {
1140
1140
/// Note that this is identical to a downwardAPI volume source without the default
1141
1141
/// mode.
1142
1142
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
1143
- pub struct DownwardApiProjection {
1143
+ pub struct DownwardAPIProjection {
1144
1144
/// Items is a list of DownwardAPIVolume file
1145
1145
/// +optional
1146
1146
/// +listType=atomic
1147
1147
#[ prost( message, repeated, tag = "1" ) ]
1148
- pub items : :: prost:: alloc:: vec:: Vec < DownwardApiVolumeFile > ,
1148
+ pub items : :: prost:: alloc:: vec:: Vec < DownwardAPIVolumeFile > ,
1149
1149
}
1150
1150
/// DownwardAPIVolumeFile represents information to create the file containing the pod field
1151
1151
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
1152
- pub struct DownwardApiVolumeFile {
1152
+ pub struct DownwardAPIVolumeFile {
1153
1153
/// Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'
1154
1154
#[ prost( string, optional, tag = "1" ) ]
1155
1155
pub path : :: core:: option:: Option < :: prost:: alloc:: string:: String > ,
@@ -1175,12 +1175,12 @@ pub struct DownwardApiVolumeFile {
1175
1175
/// DownwardAPIVolumeSource represents a volume containing downward API info.
1176
1176
/// Downward API volumes support ownership management and SELinux relabeling.
1177
1177
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
1178
- pub struct DownwardApiVolumeSource {
1178
+ pub struct DownwardAPIVolumeSource {
1179
1179
/// Items is a list of downward API volume file
1180
1180
/// +optional
1181
1181
/// +listType=atomic
1182
1182
#[ prost( message, repeated, tag = "1" ) ]
1183
- pub items : :: prost:: alloc:: vec:: Vec < DownwardApiVolumeFile > ,
1183
+ pub items : :: prost:: alloc:: vec:: Vec < DownwardAPIVolumeFile > ,
1184
1184
/// Optional: mode bits to use on created files by default. Must be a
1185
1185
/// Optional: mode bits used to set permissions on created files by default.
1186
1186
/// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
@@ -3520,7 +3520,7 @@ pub struct PersistentVolumeSource {
3520
3520
/// csi represents storage that is handled by an external CSI driver (Beta feature).
3521
3521
/// +optional
3522
3522
#[ prost( message, optional, tag = "22" ) ]
3523
- pub csi : :: core:: option:: Option < CsiPersistentVolumeSource > ,
3523
+ pub csi : :: core:: option:: Option < CSIPersistentVolumeSource > ,
3524
3524
}
3525
3525
/// PersistentVolumeSpec is the specification of a persistent volume.
3526
3526
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
@@ -6750,7 +6750,7 @@ pub struct VolumeProjection {
6750
6750
/// downwardAPI information about the downwardAPI data to project
6751
6751
/// +optional
6752
6752
#[ prost( message, optional, tag = "2" ) ]
6753
- pub downward_api : :: core:: option:: Option < DownwardApiProjection > ,
6753
+ pub downward_api : :: core:: option:: Option < DownwardAPIProjection > ,
6754
6754
/// configMap information about the configMap data to project
6755
6755
/// +optional
6756
6756
#[ prost( message, optional, tag = "3" ) ]
@@ -6892,7 +6892,7 @@ pub struct VolumeSource {
6892
6892
/// downwardAPI represents downward API about the pod that should populate this volume
6893
6893
/// +optional
6894
6894
#[ prost( message, optional, tag = "16" ) ]
6895
- pub downward_api : :: core:: option:: Option < DownwardApiVolumeSource > ,
6895
+ pub downward_api : :: core:: option:: Option < DownwardAPIVolumeSource > ,
6896
6896
/// fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
6897
6897
/// +optional
6898
6898
#[ prost( message, optional, tag = "17" ) ]
@@ -6938,7 +6938,7 @@ pub struct VolumeSource {
6938
6938
/// csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).
6939
6939
/// +optional
6940
6940
#[ prost( message, optional, tag = "28" ) ]
6941
- pub csi : :: core:: option:: Option < CsiVolumeSource > ,
6941
+ pub csi : :: core:: option:: Option < CSIVolumeSource > ,
6942
6942
/// ephemeral represents a volume that is handled by a cluster storage driver.
6943
6943
/// The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,
6944
6944
/// and deleted when the pod is removed.
0 commit comments