Unverified Commit c93ec317 authored by Kubernetes Prow Robot's avatar Kubernetes Prow Robot Committed by GitHub

Merge pull request #77781 from elisiano/fix_spelling

Fixed spelling in a couple of descriptions
parents 44881eb6 afe6d483
...@@ -6447,7 +6447,7 @@ ...@@ -6447,7 +6447,7 @@
"type": "string" "type": "string"
}, },
"optional": { "optional": {
"description": "Specify whether the ConfigMap or it's key must be defined", "description": "Specify whether the ConfigMap or its key must be defined",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -6537,7 +6537,7 @@ ...@@ -6537,7 +6537,7 @@
"type": "string" "type": "string"
}, },
"optional": { "optional": {
"description": "Specify whether the ConfigMap or it's keys must be defined", "description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -6563,7 +6563,7 @@ ...@@ -6563,7 +6563,7 @@
"type": "string" "type": "string"
}, },
"optional": { "optional": {
"description": "Specify whether the ConfigMap or it's keys must be defined", "description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -10319,7 +10319,7 @@ ...@@ -10319,7 +10319,7 @@
"type": "string" "type": "string"
}, },
"optional": { "optional": {
"description": "Specify whether the Secret or it's key must be defined", "description": "Specify whether the Secret or its key must be defined",
"type": "boolean" "type": "boolean"
} }
}, },
...@@ -10414,7 +10414,7 @@ ...@@ -10414,7 +10414,7 @@
"type": "array" "type": "array"
}, },
"optional": { "optional": {
"description": "Specify whether the Secret or it's keys must be defined", "description": "Specify whether the Secret or its keys must be defined",
"type": "boolean" "type": "boolean"
}, },
"secretName": { "secretName": {
...@@ -1443,7 +1443,7 @@ type ConfigMapVolumeSource struct { ...@@ -1443,7 +1443,7 @@ type ConfigMapVolumeSource struct {
// mode, like fsGroup, and the result can be other mode bits set. // mode, like fsGroup, and the result can be other mode bits set.
// +optional // +optional
DefaultMode *int32 DefaultMode *int32
// Specify whether the ConfigMap or it's keys must be defined // Specify whether the ConfigMap or its keys must be defined
// +optional // +optional
Optional *bool Optional *bool
} }
...@@ -1466,7 +1466,7 @@ type ConfigMapProjection struct { ...@@ -1466,7 +1466,7 @@ type ConfigMapProjection struct {
// relative and may not contain the '..' path or start with '..'. // relative and may not contain the '..' path or start with '..'.
// +optional // +optional
Items []KeyToPath Items []KeyToPath
// Specify whether the ConfigMap or it's keys must be defined // Specify whether the ConfigMap or its keys must be defined
// +optional // +optional
Optional *bool Optional *bool
} }
...@@ -1793,7 +1793,7 @@ type ConfigMapKeySelector struct { ...@@ -1793,7 +1793,7 @@ type ConfigMapKeySelector struct {
LocalObjectReference LocalObjectReference
// The key to select. // The key to select.
Key string Key string
// Specify whether the ConfigMap or it's key must be defined // Specify whether the ConfigMap or its key must be defined
// +optional // +optional
Optional *bool Optional *bool
} }
...@@ -1804,7 +1804,7 @@ type SecretKeySelector struct { ...@@ -1804,7 +1804,7 @@ type SecretKeySelector struct {
LocalObjectReference LocalObjectReference
// The key of the secret to select from. Must be a valid secret key. // The key of the secret to select from. Must be a valid secret key.
Key string Key string
// Specify whether the Secret or it's key must be defined // Specify whether the Secret or its key must be defined
// +optional // +optional
Optional *bool Optional *bool
} }
......
...@@ -496,7 +496,7 @@ message ConfigMapKeySelector { ...@@ -496,7 +496,7 @@ message ConfigMapKeySelector {
// The key to select. // The key to select.
optional string key = 2; optional string key = 2;
// Specify whether the ConfigMap or it's key must be defined // Specify whether the ConfigMap or its key must be defined
// +optional // +optional
optional bool optional = 3; optional bool optional = 3;
} }
...@@ -556,7 +556,7 @@ message ConfigMapProjection { ...@@ -556,7 +556,7 @@ message ConfigMapProjection {
// +optional // +optional
repeated KeyToPath items = 2; repeated KeyToPath items = 2;
// Specify whether the ConfigMap or it's keys must be defined // Specify whether the ConfigMap or its keys must be defined
// +optional // +optional
optional bool optional = 4; optional bool optional = 4;
} }
...@@ -588,7 +588,7 @@ message ConfigMapVolumeSource { ...@@ -588,7 +588,7 @@ message ConfigMapVolumeSource {
// +optional // +optional
optional int32 defaultMode = 3; optional int32 defaultMode = 3;
// Specify whether the ConfigMap or it's keys must be defined // Specify whether the ConfigMap or its keys must be defined
// +optional // +optional
optional bool optional = 4; optional bool optional = 4;
} }
...@@ -3986,7 +3986,7 @@ message SecretKeySelector { ...@@ -3986,7 +3986,7 @@ message SecretKeySelector {
// The key of the secret to select from. Must be a valid secret key. // The key of the secret to select from. Must be a valid secret key.
optional string key = 2; optional string key = 2;
// Specify whether the Secret or it's key must be defined // Specify whether the Secret or its key must be defined
// +optional // +optional
optional bool optional = 3; optional bool optional = 3;
} }
...@@ -4068,7 +4068,7 @@ message SecretVolumeSource { ...@@ -4068,7 +4068,7 @@ message SecretVolumeSource {
// +optional // +optional
optional int32 defaultMode = 3; optional int32 defaultMode = 3;
// Specify whether the Secret or it's keys must be defined // Specify whether the Secret or its keys must be defined
// +optional // +optional
optional bool optional = 4; optional bool optional = 4;
} }
......
...@@ -1094,7 +1094,7 @@ type SecretVolumeSource struct { ...@@ -1094,7 +1094,7 @@ type SecretVolumeSource struct {
// mode, like fsGroup, and the result can be other mode bits set. // mode, like fsGroup, and the result can be other mode bits set.
// +optional // +optional
DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"bytes,3,opt,name=defaultMode"` DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"bytes,3,opt,name=defaultMode"`
// Specify whether the Secret or it's keys must be defined // Specify whether the Secret or its keys must be defined
// +optional // +optional
Optional *bool `json:"optional,omitempty" protobuf:"varint,4,opt,name=optional"` Optional *bool `json:"optional,omitempty" protobuf:"varint,4,opt,name=optional"`
} }
...@@ -1520,7 +1520,7 @@ type ConfigMapVolumeSource struct { ...@@ -1520,7 +1520,7 @@ type ConfigMapVolumeSource struct {
// mode, like fsGroup, and the result can be other mode bits set. // mode, like fsGroup, and the result can be other mode bits set.
// +optional // +optional
DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"varint,3,opt,name=defaultMode"` DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"varint,3,opt,name=defaultMode"`
// Specify whether the ConfigMap or it's keys must be defined // Specify whether the ConfigMap or its keys must be defined
// +optional // +optional
Optional *bool `json:"optional,omitempty" protobuf:"varint,4,opt,name=optional"` Optional *bool `json:"optional,omitempty" protobuf:"varint,4,opt,name=optional"`
} }
...@@ -1547,7 +1547,7 @@ type ConfigMapProjection struct { ...@@ -1547,7 +1547,7 @@ type ConfigMapProjection struct {
// relative and may not contain the '..' path or start with '..'. // relative and may not contain the '..' path or start with '..'.
// +optional // +optional
Items []KeyToPath `json:"items,omitempty" protobuf:"bytes,2,rep,name=items"` Items []KeyToPath `json:"items,omitempty" protobuf:"bytes,2,rep,name=items"`
// Specify whether the ConfigMap or it's keys must be defined // Specify whether the ConfigMap or its keys must be defined
// +optional // +optional
Optional *bool `json:"optional,omitempty" protobuf:"varint,4,opt,name=optional"` Optional *bool `json:"optional,omitempty" protobuf:"varint,4,opt,name=optional"`
} }
...@@ -1889,7 +1889,7 @@ type ConfigMapKeySelector struct { ...@@ -1889,7 +1889,7 @@ type ConfigMapKeySelector struct {
LocalObjectReference `json:",inline" protobuf:"bytes,1,opt,name=localObjectReference"` LocalObjectReference `json:",inline" protobuf:"bytes,1,opt,name=localObjectReference"`
// The key to select. // The key to select.
Key string `json:"key" protobuf:"bytes,2,opt,name=key"` Key string `json:"key" protobuf:"bytes,2,opt,name=key"`
// Specify whether the ConfigMap or it's key must be defined // Specify whether the ConfigMap or its key must be defined
// +optional // +optional
Optional *bool `json:"optional,omitempty" protobuf:"varint,3,opt,name=optional"` Optional *bool `json:"optional,omitempty" protobuf:"varint,3,opt,name=optional"`
} }
...@@ -1900,7 +1900,7 @@ type SecretKeySelector struct { ...@@ -1900,7 +1900,7 @@ type SecretKeySelector struct {
LocalObjectReference `json:",inline" protobuf:"bytes,1,opt,name=localObjectReference"` LocalObjectReference `json:",inline" protobuf:"bytes,1,opt,name=localObjectReference"`
// The key of the secret to select from. Must be a valid secret key. // The key of the secret to select from. Must be a valid secret key.
Key string `json:"key" protobuf:"bytes,2,opt,name=key"` Key string `json:"key" protobuf:"bytes,2,opt,name=key"`
// Specify whether the Secret or it's key must be defined // Specify whether the Secret or its key must be defined
// +optional // +optional
Optional *bool `json:"optional,omitempty" protobuf:"varint,3,opt,name=optional"` Optional *bool `json:"optional,omitempty" protobuf:"varint,3,opt,name=optional"`
} }
......
...@@ -272,7 +272,7 @@ func (ConfigMapEnvSource) SwaggerDoc() map[string]string { ...@@ -272,7 +272,7 @@ func (ConfigMapEnvSource) SwaggerDoc() map[string]string {
var map_ConfigMapKeySelector = map[string]string{ var map_ConfigMapKeySelector = map[string]string{
"": "Selects a key from a ConfigMap.", "": "Selects a key from a ConfigMap.",
"key": "The key to select.", "key": "The key to select.",
"optional": "Specify whether the ConfigMap or it's key must be defined", "optional": "Specify whether the ConfigMap or its key must be defined",
} }
func (ConfigMapKeySelector) SwaggerDoc() map[string]string { func (ConfigMapKeySelector) SwaggerDoc() map[string]string {
...@@ -305,7 +305,7 @@ func (ConfigMapNodeConfigSource) SwaggerDoc() map[string]string { ...@@ -305,7 +305,7 @@ func (ConfigMapNodeConfigSource) SwaggerDoc() map[string]string {
var map_ConfigMapProjection = map[string]string{ var map_ConfigMapProjection = map[string]string{
"": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
"items": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"optional": "Specify whether the ConfigMap or it's keys must be defined", "optional": "Specify whether the ConfigMap or its keys must be defined",
} }
func (ConfigMapProjection) SwaggerDoc() map[string]string { func (ConfigMapProjection) SwaggerDoc() map[string]string {
...@@ -316,7 +316,7 @@ var map_ConfigMapVolumeSource = map[string]string{ ...@@ -316,7 +316,7 @@ var map_ConfigMapVolumeSource = map[string]string{
"": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
"items": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"defaultMode": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "defaultMode": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"optional": "Specify whether the ConfigMap or it's keys must be defined", "optional": "Specify whether the ConfigMap or its keys must be defined",
} }
func (ConfigMapVolumeSource) SwaggerDoc() map[string]string { func (ConfigMapVolumeSource) SwaggerDoc() map[string]string {
...@@ -1958,7 +1958,7 @@ func (SecretEnvSource) SwaggerDoc() map[string]string { ...@@ -1958,7 +1958,7 @@ func (SecretEnvSource) SwaggerDoc() map[string]string {
var map_SecretKeySelector = map[string]string{ var map_SecretKeySelector = map[string]string{
"": "SecretKeySelector selects a key of a Secret.", "": "SecretKeySelector selects a key of a Secret.",
"key": "The key of the secret to select from. Must be a valid secret key.", "key": "The key of the secret to select from. Must be a valid secret key.",
"optional": "Specify whether the Secret or it's key must be defined", "optional": "Specify whether the Secret or its key must be defined",
} }
func (SecretKeySelector) SwaggerDoc() map[string]string { func (SecretKeySelector) SwaggerDoc() map[string]string {
...@@ -2000,7 +2000,7 @@ var map_SecretVolumeSource = map[string]string{ ...@@ -2000,7 +2000,7 @@ var map_SecretVolumeSource = map[string]string{
"secretName": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "secretName": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
"items": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"defaultMode": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "defaultMode": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"optional": "Specify whether the Secret or it's keys must be defined", "optional": "Specify whether the Secret or its keys must be defined",
} }
func (SecretVolumeSource) SwaggerDoc() map[string]string { func (SecretVolumeSource) SwaggerDoc() map[string]string {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment