mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-02 00:07:50 +00:00
Corrected Cinder typos.
This commit is contained in:
parent
7e6b70fbb5
commit
c3e883ceb9
8
api/openapi-spec/swagger.json
generated
8
api/openapi-spec/swagger.json
generated
@ -6752,7 +6752,7 @@
|
|||||||
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
|
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
|
||||||
},
|
},
|
||||||
"volumeID": {
|
"volumeID": {
|
||||||
"description": "volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"description": "volume id used to identify the volume in cinder. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -6777,7 +6777,7 @@
|
|||||||
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
|
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
|
||||||
},
|
},
|
||||||
"volumeID": {
|
"volumeID": {
|
||||||
"description": "volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"description": "volume id used to identify the volume in cinder. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -9474,7 +9474,7 @@
|
|||||||
},
|
},
|
||||||
"cinder": {
|
"cinder": {
|
||||||
"$ref": "#/definitions/io.k8s.api.core.v1.CinderPersistentVolumeSource",
|
"$ref": "#/definitions/io.k8s.api.core.v1.CinderPersistentVolumeSource",
|
||||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md"
|
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md"
|
||||||
},
|
},
|
||||||
"claimRef": {
|
"claimRef": {
|
||||||
"$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
|
"$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
|
||||||
@ -11719,7 +11719,7 @@
|
|||||||
},
|
},
|
||||||
"cinder": {
|
"cinder": {
|
||||||
"$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource",
|
"$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource",
|
||||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md"
|
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md"
|
||||||
},
|
},
|
||||||
"configMap": {
|
"configMap": {
|
||||||
"$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource",
|
"$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource",
|
||||||
|
@ -111,7 +111,7 @@ type VolumeSource struct {
|
|||||||
// +optional
|
// +optional
|
||||||
FlexVolume *FlexVolumeSource
|
FlexVolume *FlexVolumeSource
|
||||||
|
|
||||||
// Cinder represents a cinder volume attached and mounted on kubelets host machine
|
// Cinder represents a cinder volume attached and mounted on kubelets host machine.
|
||||||
// +optional
|
// +optional
|
||||||
Cinder *CinderVolumeSource
|
Cinder *CinderVolumeSource
|
||||||
|
|
||||||
@ -196,7 +196,7 @@ type PersistentVolumeSource struct {
|
|||||||
// provisioned/attached using an exec based plugin.
|
// provisioned/attached using an exec based plugin.
|
||||||
// +optional
|
// +optional
|
||||||
FlexVolume *FlexPersistentVolumeSource
|
FlexVolume *FlexPersistentVolumeSource
|
||||||
// Cinder represents a cinder volume attached and mounted on kubelets host machine
|
// Cinder represents a cinder volume attached and mounted on kubelets host machine.
|
||||||
// +optional
|
// +optional
|
||||||
Cinder *CinderPersistentVolumeSource
|
Cinder *CinderPersistentVolumeSource
|
||||||
// CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
// CephFS represents a Ceph FS mount on the host that shares a pod's lifetime
|
||||||
@ -1034,7 +1034,7 @@ type RBDPersistentVolumeSource struct {
|
|||||||
// in the same region as the kubelet. Cinder volumes support ownership
|
// in the same region as the kubelet. Cinder volumes support ownership
|
||||||
// management and SELinux relabeling.
|
// management and SELinux relabeling.
|
||||||
type CinderVolumeSource struct {
|
type CinderVolumeSource struct {
|
||||||
// Unique id of the volume used to identify the cinder volume
|
// Unique id of the volume used to identify the cinder volume.
|
||||||
VolumeID string
|
VolumeID string
|
||||||
// Filesystem type to mount.
|
// Filesystem type to mount.
|
||||||
// Must be a filesystem type supported by the host operating system.
|
// Must be a filesystem type supported by the host operating system.
|
||||||
@ -1056,7 +1056,7 @@ type CinderVolumeSource struct {
|
|||||||
// in the same region as the kubelet. Cinder volumes support ownership
|
// in the same region as the kubelet. Cinder volumes support ownership
|
||||||
// management and SELinux relabeling.
|
// management and SELinux relabeling.
|
||||||
type CinderPersistentVolumeSource struct {
|
type CinderPersistentVolumeSource struct {
|
||||||
// Unique id of the volume used to identify the cinder volume
|
// Unique id of the volume used to identify the cinder volume.
|
||||||
VolumeID string
|
VolumeID string
|
||||||
// Filesystem type to mount.
|
// Filesystem type to mount.
|
||||||
// Must be a filesystem type supported by the host operating system.
|
// Must be a filesystem type supported by the host operating system.
|
||||||
|
@ -342,7 +342,7 @@ message CephFSVolumeSource {
|
|||||||
// The volume must also be in the same region as the kubelet.
|
// The volume must also be in the same region as the kubelet.
|
||||||
// Cinder volumes support ownership management and SELinux relabeling.
|
// Cinder volumes support ownership management and SELinux relabeling.
|
||||||
message CinderPersistentVolumeSource {
|
message CinderPersistentVolumeSource {
|
||||||
// volume id used to identify the volume in cinder
|
// volume id used to identify the volume in cinder.
|
||||||
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
||||||
optional string volumeID = 1;
|
optional string volumeID = 1;
|
||||||
|
|
||||||
@ -370,7 +370,7 @@ message CinderPersistentVolumeSource {
|
|||||||
// The volume must also be in the same region as the kubelet.
|
// The volume must also be in the same region as the kubelet.
|
||||||
// Cinder volumes support ownership management and SELinux relabeling.
|
// Cinder volumes support ownership management and SELinux relabeling.
|
||||||
message CinderVolumeSource {
|
message CinderVolumeSource {
|
||||||
// volume id used to identify the volume in cinder
|
// volume id used to identify the volume in cinder.
|
||||||
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
||||||
optional string volumeID = 1;
|
optional string volumeID = 1;
|
||||||
|
|
||||||
@ -2658,7 +2658,7 @@ message PersistentVolumeSource {
|
|||||||
// +optional
|
// +optional
|
||||||
optional ISCSIPersistentVolumeSource iscsi = 7;
|
optional ISCSIPersistentVolumeSource iscsi = 7;
|
||||||
|
|
||||||
// Cinder represents a cinder volume attached and mounted on kubelets host machine
|
// Cinder represents a cinder volume attached and mounted on kubelets host machine.
|
||||||
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
||||||
// +optional
|
// +optional
|
||||||
optional CinderPersistentVolumeSource cinder = 8;
|
optional CinderPersistentVolumeSource cinder = 8;
|
||||||
@ -5071,7 +5071,7 @@ message VolumeSource {
|
|||||||
// +optional
|
// +optional
|
||||||
optional FlexVolumeSource flexVolume = 12;
|
optional FlexVolumeSource flexVolume = 12;
|
||||||
|
|
||||||
// Cinder represents a cinder volume attached and mounted on kubelets host machine
|
// Cinder represents a cinder volume attached and mounted on kubelets host machine.
|
||||||
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
||||||
// +optional
|
// +optional
|
||||||
optional CinderVolumeSource cinder = 13;
|
optional CinderVolumeSource cinder = 13;
|
||||||
|
@ -107,7 +107,7 @@ type VolumeSource struct {
|
|||||||
// provisioned/attached using an exec based plugin.
|
// provisioned/attached using an exec based plugin.
|
||||||
// +optional
|
// +optional
|
||||||
FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" protobuf:"bytes,12,opt,name=flexVolume"`
|
FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" protobuf:"bytes,12,opt,name=flexVolume"`
|
||||||
// Cinder represents a cinder volume attached and mounted on kubelets host machine
|
// Cinder represents a cinder volume attached and mounted on kubelets host machine.
|
||||||
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
||||||
// +optional
|
// +optional
|
||||||
Cinder *CinderVolumeSource `json:"cinder,omitempty" protobuf:"bytes,13,opt,name=cinder"`
|
Cinder *CinderVolumeSource `json:"cinder,omitempty" protobuf:"bytes,13,opt,name=cinder"`
|
||||||
@ -207,7 +207,7 @@ type PersistentVolumeSource struct {
|
|||||||
// kubelet's host machine and then exposed to the pod. Provisioned by an admin.
|
// kubelet's host machine and then exposed to the pod. Provisioned by an admin.
|
||||||
// +optional
|
// +optional
|
||||||
ISCSI *ISCSIPersistentVolumeSource `json:"iscsi,omitempty" protobuf:"bytes,7,opt,name=iscsi"`
|
ISCSI *ISCSIPersistentVolumeSource `json:"iscsi,omitempty" protobuf:"bytes,7,opt,name=iscsi"`
|
||||||
// Cinder represents a cinder volume attached and mounted on kubelets host machine
|
// Cinder represents a cinder volume attached and mounted on kubelets host machine.
|
||||||
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
||||||
// +optional
|
// +optional
|
||||||
Cinder *CinderPersistentVolumeSource `json:"cinder,omitempty" protobuf:"bytes,8,opt,name=cinder"`
|
Cinder *CinderPersistentVolumeSource `json:"cinder,omitempty" protobuf:"bytes,8,opt,name=cinder"`
|
||||||
@ -756,7 +756,7 @@ type RBDPersistentVolumeSource struct {
|
|||||||
// The volume must also be in the same region as the kubelet.
|
// The volume must also be in the same region as the kubelet.
|
||||||
// Cinder volumes support ownership management and SELinux relabeling.
|
// Cinder volumes support ownership management and SELinux relabeling.
|
||||||
type CinderVolumeSource struct {
|
type CinderVolumeSource struct {
|
||||||
// volume id used to identify the volume in cinder
|
// volume id used to identify the volume in cinder.
|
||||||
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
||||||
VolumeID string `json:"volumeID" protobuf:"bytes,1,opt,name=volumeID"`
|
VolumeID string `json:"volumeID" protobuf:"bytes,1,opt,name=volumeID"`
|
||||||
// Filesystem type to mount.
|
// Filesystem type to mount.
|
||||||
@ -781,7 +781,7 @@ type CinderVolumeSource struct {
|
|||||||
// The volume must also be in the same region as the kubelet.
|
// The volume must also be in the same region as the kubelet.
|
||||||
// Cinder volumes support ownership management and SELinux relabeling.
|
// Cinder volumes support ownership management and SELinux relabeling.
|
||||||
type CinderPersistentVolumeSource struct {
|
type CinderPersistentVolumeSource struct {
|
||||||
// volume id used to identify the volume in cinder
|
// volume id used to identify the volume in cinder.
|
||||||
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
// More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
|
||||||
VolumeID string `json:"volumeID" protobuf:"bytes,1,opt,name=volumeID"`
|
VolumeID string `json:"volumeID" protobuf:"bytes,1,opt,name=volumeID"`
|
||||||
// Filesystem type to mount.
|
// Filesystem type to mount.
|
||||||
|
@ -186,7 +186,7 @@ func (CephFSVolumeSource) SwaggerDoc() map[string]string {
|
|||||||
|
|
||||||
var map_CinderPersistentVolumeSource = map[string]string{
|
var map_CinderPersistentVolumeSource = map[string]string{
|
||||||
"": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
|
"": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
|
||||||
"volumeID": "volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"volumeID": "volume id used to identify the volume in cinder. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"fsType": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"fsType": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"readOnly": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"readOnly": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"secretRef": "Optional: points to a secret object containing parameters used to connect to OpenStack.",
|
"secretRef": "Optional: points to a secret object containing parameters used to connect to OpenStack.",
|
||||||
@ -198,7 +198,7 @@ func (CinderPersistentVolumeSource) SwaggerDoc() map[string]string {
|
|||||||
|
|
||||||
var map_CinderVolumeSource = map[string]string{
|
var map_CinderVolumeSource = map[string]string{
|
||||||
"": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
|
"": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
|
||||||
"volumeID": "volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"volumeID": "volume id used to identify the volume in cinder. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"fsType": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"fsType": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"readOnly": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"readOnly": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"secretRef": "Optional: points to a secret object containing parameters used to connect to OpenStack.",
|
"secretRef": "Optional: points to a secret object containing parameters used to connect to OpenStack.",
|
||||||
@ -1332,7 +1332,7 @@ var map_PersistentVolumeSource = map[string]string{
|
|||||||
"nfs": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
|
"nfs": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
|
||||||
"rbd": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md",
|
"rbd": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md",
|
||||||
"iscsi": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.",
|
"iscsi": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.",
|
||||||
"cinder": "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"cinder": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"cephfs": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime",
|
"cephfs": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime",
|
||||||
"fc": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.",
|
"fc": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.",
|
||||||
"flocker": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running",
|
"flocker": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running",
|
||||||
@ -2392,7 +2392,7 @@ var map_VolumeSource = map[string]string{
|
|||||||
"persistentVolumeClaim": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
|
"persistentVolumeClaim": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
|
||||||
"rbd": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md",
|
"rbd": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md",
|
||||||
"flexVolume": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
|
"flexVolume": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
|
||||||
"cinder": "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
"cinder": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
|
||||||
"cephfs": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime",
|
"cephfs": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime",
|
||||||
"flocker": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running",
|
"flocker": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running",
|
||||||
"downwardAPI": "DownwardAPI represents downward API about the pod that should populate this volume",
|
"downwardAPI": "DownwardAPI represents downward API about the pod that should populate this volume",
|
||||||
|
Loading…
Reference in New Issue
Block a user