mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-24 12:15:52 +00:00
Merge pull request #107441 from humblec/more-pv-source
correct struct fields in VolumeSource and PersistentVolumeSource
This commit is contained in:
commit
d1f559711d
102
api/openapi-spec/swagger.json
generated
102
api/openapi-spec/swagger.json
generated
@ -8064,15 +8064,15 @@
|
||||
},
|
||||
"awsElasticBlockStore": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
|
||||
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
"description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
},
|
||||
"azureDisk": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
|
||||
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
"description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
},
|
||||
"azureFile": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.AzureFilePersistentVolumeSource",
|
||||
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
"description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
},
|
||||
"capacity": {
|
||||
"additionalProperties": {
|
||||
@ -8083,11 +8083,11 @@
|
||||
},
|
||||
"cephfs": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.CephFSPersistentVolumeSource",
|
||||
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
"description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"cinder": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.CinderPersistentVolumeSource",
|
||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
"description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
},
|
||||
"claimRef": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference",
|
||||
@ -8095,39 +8095,39 @@
|
||||
},
|
||||
"csi": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.CSIPersistentVolumeSource",
|
||||
"description": "CSI represents storage that is handled by an external CSI driver (Beta feature)."
|
||||
"description": "csi represents storage that is handled by an external CSI driver (Beta feature)."
|
||||
},
|
||||
"fc": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
|
||||
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
"description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
},
|
||||
"flexVolume": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.FlexPersistentVolumeSource",
|
||||
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
"description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
},
|
||||
"flocker": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
|
||||
"description": "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"
|
||||
"description": "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"
|
||||
},
|
||||
"gcePersistentDisk": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
|
||||
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
"description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
},
|
||||
"glusterfs": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource",
|
||||
"description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
"description": "glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
},
|
||||
"hostPath": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
|
||||
"description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
"description": "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
},
|
||||
"iscsi": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.ISCSIPersistentVolumeSource",
|
||||
"description": "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."
|
||||
"description": "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."
|
||||
},
|
||||
"local": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.LocalVolumeSource",
|
||||
"description": "Local represents directly-attached storage with node affinity"
|
||||
"description": "local represents directly-attached storage with node affinity"
|
||||
},
|
||||
"mountOptions": {
|
||||
"description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
|
||||
@ -8138,7 +8138,7 @@
|
||||
},
|
||||
"nfs": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
|
||||
"description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
"description": "nfs represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
},
|
||||
"nodeAffinity": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.VolumeNodeAffinity",
|
||||
@ -8155,23 +8155,23 @@
|
||||
},
|
||||
"photonPersistentDisk": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
|
||||
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
"description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
},
|
||||
"portworxVolume": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
|
||||
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
"description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
},
|
||||
"quobyte": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
|
||||
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
"description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"rbd": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.RBDPersistentVolumeSource",
|
||||
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
"description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
},
|
||||
"scaleIO": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource",
|
||||
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
"description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"storageClassName": {
|
||||
"description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
|
||||
@ -8179,7 +8179,7 @@
|
||||
},
|
||||
"storageos": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource",
|
||||
"description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
|
||||
"description": "storageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
|
||||
},
|
||||
"volumeMode": {
|
||||
"description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.",
|
||||
@ -8187,7 +8187,7 @@
|
||||
},
|
||||
"vsphereVolume": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
|
||||
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
"description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@ -10576,75 +10576,75 @@
|
||||
"properties": {
|
||||
"awsElasticBlockStore": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
|
||||
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
"description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
},
|
||||
"azureDisk": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource",
|
||||
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
"description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
},
|
||||
"azureFile": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource",
|
||||
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
"description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
},
|
||||
"cephfs": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.CephFSVolumeSource",
|
||||
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
"description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"cinder": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.CinderVolumeSource",
|
||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
"description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
},
|
||||
"configMap": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource",
|
||||
"description": "ConfigMap represents a configMap that should populate this volume"
|
||||
"description": "configMap represents a configMap that should populate this volume"
|
||||
},
|
||||
"csi": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.CSIVolumeSource",
|
||||
"description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
"description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
},
|
||||
"downwardAPI": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource",
|
||||
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
|
||||
"description": "downwardAPI represents downward API about the pod that should populate this volume"
|
||||
},
|
||||
"emptyDir": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource",
|
||||
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
"description": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
},
|
||||
"ephemeral": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.EphemeralVolumeSource",
|
||||
"description": "Ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
"description": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
},
|
||||
"fc": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.FCVolumeSource",
|
||||
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
"description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
},
|
||||
"flexVolume": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.FlexVolumeSource",
|
||||
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
"description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
},
|
||||
"flocker": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.FlockerVolumeSource",
|
||||
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
"description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
},
|
||||
"gcePersistentDisk": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
|
||||
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
"description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
},
|
||||
"gitRepo": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource",
|
||||
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
"description": "gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
},
|
||||
"glusterfs": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource",
|
||||
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
"description": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
},
|
||||
"hostPath": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
|
||||
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
"description": "hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
},
|
||||
"iscsi": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource",
|
||||
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
"description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
},
|
||||
"name": {
|
||||
"description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
|
||||
@ -10652,47 +10652,47 @@
|
||||
},
|
||||
"nfs": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.NFSVolumeSource",
|
||||
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
"description": "nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
},
|
||||
"persistentVolumeClaim": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource",
|
||||
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
"description": "persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
},
|
||||
"photonPersistentDisk": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
|
||||
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
"description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
},
|
||||
"portworxVolume": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.PortworxVolumeSource",
|
||||
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
"description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
},
|
||||
"projected": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource",
|
||||
"description": "Items for all in one resources secrets, configmaps, and downward API"
|
||||
"description": "projected items for all in one resources secrets, configmaps, and downward API"
|
||||
},
|
||||
"quobyte": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource",
|
||||
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
"description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"rbd": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.RBDVolumeSource",
|
||||
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
"description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
},
|
||||
"scaleIO": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource",
|
||||
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
"description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"secret": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.SecretVolumeSource",
|
||||
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
"description": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
},
|
||||
"storageos": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource",
|
||||
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
"description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"vsphereVolume": {
|
||||
"$ref": "#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
|
||||
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
"description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
@ -3674,15 +3674,15 @@
|
||||
},
|
||||
"awsElasticBlockStore": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
|
||||
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
"description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
},
|
||||
"azureDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource",
|
||||
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
"description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
},
|
||||
"azureFile": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFilePersistentVolumeSource",
|
||||
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
"description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
},
|
||||
"capacity": {
|
||||
"additionalProperties": {
|
||||
@ -3694,11 +3694,11 @@
|
||||
},
|
||||
"cephfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSPersistentVolumeSource",
|
||||
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
"description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"cinder": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CinderPersistentVolumeSource",
|
||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
"description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
},
|
||||
"claimRef": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference",
|
||||
@ -3706,39 +3706,39 @@
|
||||
},
|
||||
"csi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CSIPersistentVolumeSource",
|
||||
"description": "CSI represents storage that is handled by an external CSI driver (Beta feature)."
|
||||
"description": "csi represents storage that is handled by an external CSI driver (Beta feature)."
|
||||
},
|
||||
"fc": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource",
|
||||
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
"description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
},
|
||||
"flexVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlexPersistentVolumeSource",
|
||||
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
"description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
},
|
||||
"flocker": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource",
|
||||
"description": "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"
|
||||
"description": "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"
|
||||
},
|
||||
"gcePersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
|
||||
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
"description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
},
|
||||
"glusterfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource",
|
||||
"description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
"description": "glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
},
|
||||
"hostPath": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource",
|
||||
"description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
"description": "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
},
|
||||
"iscsi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIPersistentVolumeSource",
|
||||
"description": "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."
|
||||
"description": "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."
|
||||
},
|
||||
"local": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.LocalVolumeSource",
|
||||
"description": "Local represents directly-attached storage with node affinity"
|
||||
"description": "local represents directly-attached storage with node affinity"
|
||||
},
|
||||
"mountOptions": {
|
||||
"description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
|
||||
@ -3750,7 +3750,7 @@
|
||||
},
|
||||
"nfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource",
|
||||
"description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
"description": "nfs represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
},
|
||||
"nodeAffinity": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeNodeAffinity",
|
||||
@ -3767,23 +3767,23 @@
|
||||
},
|
||||
"photonPersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
|
||||
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
"description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
},
|
||||
"portworxVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource",
|
||||
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
"description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
},
|
||||
"quobyte": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource",
|
||||
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
"description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"rbd": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.RBDPersistentVolumeSource",
|
||||
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
"description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
},
|
||||
"scaleIO": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource",
|
||||
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
"description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"storageClassName": {
|
||||
"description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
|
||||
@ -3791,7 +3791,7 @@
|
||||
},
|
||||
"storageos": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSPersistentVolumeSource",
|
||||
"description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
|
||||
"description": "storageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
|
||||
},
|
||||
"volumeMode": {
|
||||
"description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.",
|
||||
@ -3799,7 +3799,7 @@
|
||||
},
|
||||
"vsphereVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
|
||||
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
"description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@ -6282,75 +6282,75 @@
|
||||
"properties": {
|
||||
"awsElasticBlockStore": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
|
||||
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
"description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
},
|
||||
"azureDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource",
|
||||
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
"description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
},
|
||||
"azureFile": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFileVolumeSource",
|
||||
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
"description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
},
|
||||
"cephfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSVolumeSource",
|
||||
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
"description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"cinder": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CinderVolumeSource",
|
||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
"description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
},
|
||||
"configMap": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapVolumeSource",
|
||||
"description": "ConfigMap represents a configMap that should populate this volume"
|
||||
"description": "configMap represents a configMap that should populate this volume"
|
||||
},
|
||||
"csi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CSIVolumeSource",
|
||||
"description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
"description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
},
|
||||
"downwardAPI": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeSource",
|
||||
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
|
||||
"description": "downwardAPI represents downward API about the pod that should populate this volume"
|
||||
},
|
||||
"emptyDir": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.EmptyDirVolumeSource",
|
||||
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
"description": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
},
|
||||
"ephemeral": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralVolumeSource",
|
||||
"description": "Ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
"description": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
},
|
||||
"fc": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource",
|
||||
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
"description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
},
|
||||
"flexVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlexVolumeSource",
|
||||
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
"description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
},
|
||||
"flocker": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource",
|
||||
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
"description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
},
|
||||
"gcePersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
|
||||
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
"description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
},
|
||||
"gitRepo": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GitRepoVolumeSource",
|
||||
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
"description": "gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
},
|
||||
"glusterfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsVolumeSource",
|
||||
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
"description": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
},
|
||||
"hostPath": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource",
|
||||
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
"description": "hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
},
|
||||
"iscsi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIVolumeSource",
|
||||
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
"description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
},
|
||||
"name": {
|
||||
"default": "",
|
||||
@ -6359,47 +6359,47 @@
|
||||
},
|
||||
"nfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource",
|
||||
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
"description": "nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
},
|
||||
"persistentVolumeClaim": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource",
|
||||
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
"description": "persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
},
|
||||
"photonPersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
|
||||
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
"description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
},
|
||||
"portworxVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource",
|
||||
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
"description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
},
|
||||
"projected": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ProjectedVolumeSource",
|
||||
"description": "Items for all in one resources secrets, configmaps, and downward API"
|
||||
"description": "projected items for all in one resources secrets, configmaps, and downward API"
|
||||
},
|
||||
"quobyte": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource",
|
||||
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
"description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"rbd": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.RBDVolumeSource",
|
||||
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
"description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
},
|
||||
"scaleIO": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource",
|
||||
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
"description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"secret": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.SecretVolumeSource",
|
||||
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
"description": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
},
|
||||
"storageos": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSVolumeSource",
|
||||
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
"description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"vsphereVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
|
||||
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
"description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
@ -3795,75 +3795,75 @@
|
||||
"properties": {
|
||||
"awsElasticBlockStore": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
|
||||
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
"description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
},
|
||||
"azureDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource",
|
||||
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
"description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
},
|
||||
"azureFile": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFileVolumeSource",
|
||||
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
"description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
},
|
||||
"cephfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSVolumeSource",
|
||||
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
"description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"cinder": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CinderVolumeSource",
|
||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
"description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
},
|
||||
"configMap": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapVolumeSource",
|
||||
"description": "ConfigMap represents a configMap that should populate this volume"
|
||||
"description": "configMap represents a configMap that should populate this volume"
|
||||
},
|
||||
"csi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CSIVolumeSource",
|
||||
"description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
"description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
},
|
||||
"downwardAPI": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeSource",
|
||||
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
|
||||
"description": "downwardAPI represents downward API about the pod that should populate this volume"
|
||||
},
|
||||
"emptyDir": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.EmptyDirVolumeSource",
|
||||
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
"description": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
},
|
||||
"ephemeral": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralVolumeSource",
|
||||
"description": "Ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
"description": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
},
|
||||
"fc": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource",
|
||||
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
"description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
},
|
||||
"flexVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlexVolumeSource",
|
||||
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
"description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
},
|
||||
"flocker": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource",
|
||||
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
"description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
},
|
||||
"gcePersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
|
||||
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
"description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
},
|
||||
"gitRepo": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GitRepoVolumeSource",
|
||||
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
"description": "gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
},
|
||||
"glusterfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsVolumeSource",
|
||||
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
"description": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
},
|
||||
"hostPath": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource",
|
||||
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
"description": "hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
},
|
||||
"iscsi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIVolumeSource",
|
||||
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
"description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
},
|
||||
"name": {
|
||||
"default": "",
|
||||
@ -3872,47 +3872,47 @@
|
||||
},
|
||||
"nfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource",
|
||||
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
"description": "nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
},
|
||||
"persistentVolumeClaim": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource",
|
||||
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
"description": "persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
},
|
||||
"photonPersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
|
||||
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
"description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
},
|
||||
"portworxVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource",
|
||||
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
"description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
},
|
||||
"projected": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ProjectedVolumeSource",
|
||||
"description": "Items for all in one resources secrets, configmaps, and downward API"
|
||||
"description": "projected items for all in one resources secrets, configmaps, and downward API"
|
||||
},
|
||||
"quobyte": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource",
|
||||
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
"description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"rbd": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.RBDVolumeSource",
|
||||
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
"description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
},
|
||||
"scaleIO": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource",
|
||||
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
"description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"secret": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.SecretVolumeSource",
|
||||
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
"description": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
},
|
||||
"storageos": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSVolumeSource",
|
||||
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
"description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"vsphereVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
|
||||
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
"description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
@ -3021,75 +3021,75 @@
|
||||
"properties": {
|
||||
"awsElasticBlockStore": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
|
||||
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
"description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
},
|
||||
"azureDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource",
|
||||
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
"description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
},
|
||||
"azureFile": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFileVolumeSource",
|
||||
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
"description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
},
|
||||
"cephfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSVolumeSource",
|
||||
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
"description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"cinder": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CinderVolumeSource",
|
||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
"description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
},
|
||||
"configMap": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapVolumeSource",
|
||||
"description": "ConfigMap represents a configMap that should populate this volume"
|
||||
"description": "configMap represents a configMap that should populate this volume"
|
||||
},
|
||||
"csi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CSIVolumeSource",
|
||||
"description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
"description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
},
|
||||
"downwardAPI": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeSource",
|
||||
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
|
||||
"description": "downwardAPI represents downward API about the pod that should populate this volume"
|
||||
},
|
||||
"emptyDir": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.EmptyDirVolumeSource",
|
||||
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
"description": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
},
|
||||
"ephemeral": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralVolumeSource",
|
||||
"description": "Ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
"description": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
},
|
||||
"fc": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource",
|
||||
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
"description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
},
|
||||
"flexVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlexVolumeSource",
|
||||
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
"description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
},
|
||||
"flocker": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource",
|
||||
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
"description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
},
|
||||
"gcePersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
|
||||
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
"description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
},
|
||||
"gitRepo": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GitRepoVolumeSource",
|
||||
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
"description": "gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
},
|
||||
"glusterfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsVolumeSource",
|
||||
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
"description": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
},
|
||||
"hostPath": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource",
|
||||
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
"description": "hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
},
|
||||
"iscsi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIVolumeSource",
|
||||
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
"description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
},
|
||||
"name": {
|
||||
"default": "",
|
||||
@ -3098,47 +3098,47 @@
|
||||
},
|
||||
"nfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource",
|
||||
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
"description": "nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
},
|
||||
"persistentVolumeClaim": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource",
|
||||
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
"description": "persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
},
|
||||
"photonPersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
|
||||
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
"description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
},
|
||||
"portworxVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource",
|
||||
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
"description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
},
|
||||
"projected": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ProjectedVolumeSource",
|
||||
"description": "Items for all in one resources secrets, configmaps, and downward API"
|
||||
"description": "projected items for all in one resources secrets, configmaps, and downward API"
|
||||
},
|
||||
"quobyte": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource",
|
||||
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
"description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"rbd": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.RBDVolumeSource",
|
||||
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
"description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
},
|
||||
"scaleIO": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource",
|
||||
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
"description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"secret": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.SecretVolumeSource",
|
||||
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
"description": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
},
|
||||
"storageos": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSVolumeSource",
|
||||
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
"description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"vsphereVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
|
||||
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
"description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
@ -2823,75 +2823,75 @@
|
||||
"properties": {
|
||||
"awsElasticBlockStore": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
|
||||
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
"description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
},
|
||||
"azureDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource",
|
||||
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
"description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
},
|
||||
"azureFile": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFileVolumeSource",
|
||||
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
"description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
},
|
||||
"cephfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSVolumeSource",
|
||||
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
"description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"cinder": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CinderVolumeSource",
|
||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
"description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
},
|
||||
"configMap": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapVolumeSource",
|
||||
"description": "ConfigMap represents a configMap that should populate this volume"
|
||||
"description": "configMap represents a configMap that should populate this volume"
|
||||
},
|
||||
"csi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CSIVolumeSource",
|
||||
"description": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
"description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)."
|
||||
},
|
||||
"downwardAPI": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeSource",
|
||||
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
|
||||
"description": "downwardAPI represents downward API about the pod that should populate this volume"
|
||||
},
|
||||
"emptyDir": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.EmptyDirVolumeSource",
|
||||
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
"description": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
|
||||
},
|
||||
"ephemeral": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralVolumeSource",
|
||||
"description": "Ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
"description": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time."
|
||||
},
|
||||
"fc": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource",
|
||||
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
"description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
},
|
||||
"flexVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlexVolumeSource",
|
||||
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
"description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
},
|
||||
"flocker": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource",
|
||||
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
"description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
|
||||
},
|
||||
"gcePersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
|
||||
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
"description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
},
|
||||
"gitRepo": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GitRepoVolumeSource",
|
||||
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
"description": "gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
|
||||
},
|
||||
"glusterfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsVolumeSource",
|
||||
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
"description": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
},
|
||||
"hostPath": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource",
|
||||
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
"description": "hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
},
|
||||
"iscsi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIVolumeSource",
|
||||
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
"description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
|
||||
},
|
||||
"name": {
|
||||
"default": "",
|
||||
@ -2900,47 +2900,47 @@
|
||||
},
|
||||
"nfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource",
|
||||
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
"description": "nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
},
|
||||
"persistentVolumeClaim": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource",
|
||||
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
"description": "persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
|
||||
},
|
||||
"photonPersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
|
||||
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
"description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
},
|
||||
"portworxVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource",
|
||||
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
"description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
},
|
||||
"projected": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ProjectedVolumeSource",
|
||||
"description": "Items for all in one resources secrets, configmaps, and downward API"
|
||||
"description": "projected items for all in one resources secrets, configmaps, and downward API"
|
||||
},
|
||||
"quobyte": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource",
|
||||
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
"description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"rbd": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.RBDVolumeSource",
|
||||
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
"description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
},
|
||||
"scaleIO": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource",
|
||||
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
"description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"secret": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.SecretVolumeSource",
|
||||
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
"description": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
|
||||
},
|
||||
"storageos": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSVolumeSource",
|
||||
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
"description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"vsphereVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
|
||||
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
"description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
@ -593,15 +593,15 @@
|
||||
},
|
||||
"awsElasticBlockStore": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource",
|
||||
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
"description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
|
||||
},
|
||||
"azureDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource",
|
||||
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
"description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
|
||||
},
|
||||
"azureFile": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFilePersistentVolumeSource",
|
||||
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
"description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
|
||||
},
|
||||
"capacity": {
|
||||
"additionalProperties": {
|
||||
@ -613,11 +613,11 @@
|
||||
},
|
||||
"cephfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSPersistentVolumeSource",
|
||||
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
"description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"cinder": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CinderPersistentVolumeSource",
|
||||
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
"description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
|
||||
},
|
||||
"claimRef": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference",
|
||||
@ -625,39 +625,39 @@
|
||||
},
|
||||
"csi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.CSIPersistentVolumeSource",
|
||||
"description": "CSI represents storage that is handled by an external CSI driver (Beta feature)."
|
||||
"description": "csi represents storage that is handled by an external CSI driver (Beta feature)."
|
||||
},
|
||||
"fc": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource",
|
||||
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
"description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
|
||||
},
|
||||
"flexVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlexPersistentVolumeSource",
|
||||
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
"description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
|
||||
},
|
||||
"flocker": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource",
|
||||
"description": "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"
|
||||
"description": "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"
|
||||
},
|
||||
"gcePersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
|
||||
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
"description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
|
||||
},
|
||||
"glusterfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource",
|
||||
"description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
"description": "glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
|
||||
},
|
||||
"hostPath": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource",
|
||||
"description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
"description": "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
|
||||
},
|
||||
"iscsi": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIPersistentVolumeSource",
|
||||
"description": "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."
|
||||
"description": "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."
|
||||
},
|
||||
"local": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.LocalVolumeSource",
|
||||
"description": "Local represents directly-attached storage with node affinity"
|
||||
"description": "local represents directly-attached storage with node affinity"
|
||||
},
|
||||
"mountOptions": {
|
||||
"description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
|
||||
@ -669,7 +669,7 @@
|
||||
},
|
||||
"nfs": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource",
|
||||
"description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
"description": "nfs represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
|
||||
},
|
||||
"nodeAffinity": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeNodeAffinity",
|
||||
@ -686,23 +686,23 @@
|
||||
},
|
||||
"photonPersistentDisk": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource",
|
||||
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
"description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
|
||||
},
|
||||
"portworxVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource",
|
||||
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
"description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine"
|
||||
},
|
||||
"quobyte": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource",
|
||||
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
"description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
|
||||
},
|
||||
"rbd": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.RBDPersistentVolumeSource",
|
||||
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
"description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
|
||||
},
|
||||
"scaleIO": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource",
|
||||
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
"description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"storageClassName": {
|
||||
"description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
|
||||
@ -710,7 +710,7 @@
|
||||
},
|
||||
"storageos": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSPersistentVolumeSource",
|
||||
"description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
|
||||
"description": "storageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
|
||||
},
|
||||
"volumeMode": {
|
||||
"description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.",
|
||||
@ -718,7 +718,7 @@
|
||||
},
|
||||
"vsphereVolume": {
|
||||
"$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
|
||||
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
"description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
|
@ -2819,19 +2819,19 @@ message PersistentVolumeList {
|
||||
// PersistentVolumeSource is similar to VolumeSource but meant for the
|
||||
// administrator who creates PVs. Exactly one of its members must be set.
|
||||
message PersistentVolumeSource {
|
||||
// GCEPersistentDisk represents a GCE Disk resource that is attached to a
|
||||
// gcePersistentDisk represents a GCE Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod. Provisioned by an admin.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
||||
// +optional
|
||||
optional GCEPersistentDiskVolumeSource gcePersistentDisk = 1;
|
||||
|
||||
// AWSElasticBlockStore represents an AWS Disk resource that is attached to a
|
||||
// awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
||||
// +optional
|
||||
optional AWSElasticBlockStoreVolumeSource awsElasticBlockStore = 2;
|
||||
|
||||
// HostPath represents a directory on the host.
|
||||
// hostPath represents a directory on the host.
|
||||
// Provisioned by a developer or tester.
|
||||
// This is useful for single-node development and testing only!
|
||||
// On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster.
|
||||
@ -2839,86 +2839,86 @@ message PersistentVolumeSource {
|
||||
// +optional
|
||||
optional HostPathVolumeSource hostPath = 3;
|
||||
|
||||
// Glusterfs represents a Glusterfs volume that is attached to a host and
|
||||
// glusterfs represents a Glusterfs volume that is attached to a host and
|
||||
// exposed to the pod. Provisioned by an admin.
|
||||
// More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
||||
// +optional
|
||||
optional GlusterfsPersistentVolumeSource glusterfs = 4;
|
||||
|
||||
// NFS represents an NFS mount on the host. Provisioned by an admin.
|
||||
// nfs represents an NFS mount on the host. Provisioned by an admin.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
|
||||
// +optional
|
||||
optional NFSVolumeSource nfs = 5;
|
||||
|
||||
// RBD represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
||||
// rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
||||
// More info: https://examples.k8s.io/volumes/rbd/README.md
|
||||
// +optional
|
||||
optional RBDPersistentVolumeSource rbd = 6;
|
||||
|
||||
// ISCSI represents an ISCSI Disk resource that is attached to a
|
||||
// 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.
|
||||
// +optional
|
||||
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://examples.k8s.io/mysql-cinder-pd/README.md
|
||||
// +optional
|
||||
optional CinderPersistentVolumeSource cinder = 8;
|
||||
|
||||
// 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
|
||||
// +optional
|
||||
optional CephFSPersistentVolumeSource cephfs = 9;
|
||||
|
||||
// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
|
||||
// fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
|
||||
// +optional
|
||||
optional FCVolumeSource fc = 10;
|
||||
|
||||
// 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 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
|
||||
// +optional
|
||||
optional FlockerVolumeSource flocker = 11;
|
||||
|
||||
// FlexVolume represents a generic volume resource that is
|
||||
// flexVolume represents a generic volume resource that is
|
||||
// provisioned/attached using an exec based plugin.
|
||||
// +optional
|
||||
optional FlexPersistentVolumeSource flexVolume = 12;
|
||||
|
||||
// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
||||
// azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
||||
// +optional
|
||||
optional AzureFilePersistentVolumeSource azureFile = 13;
|
||||
|
||||
// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
||||
// vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
||||
// +optional
|
||||
optional VsphereVirtualDiskVolumeSource vsphereVolume = 14;
|
||||
|
||||
// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
||||
// quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
||||
// +optional
|
||||
optional QuobyteVolumeSource quobyte = 15;
|
||||
|
||||
// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
||||
// azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
||||
// +optional
|
||||
optional AzureDiskVolumeSource azureDisk = 16;
|
||||
|
||||
// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
||||
// photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
||||
optional PhotonPersistentDiskVolumeSource photonPersistentDisk = 17;
|
||||
|
||||
// PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
||||
// portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
||||
// +optional
|
||||
optional PortworxVolumeSource portworxVolume = 18;
|
||||
|
||||
// ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
||||
// scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
||||
// +optional
|
||||
optional ScaleIOPersistentVolumeSource scaleIO = 19;
|
||||
|
||||
// Local represents directly-attached storage with node affinity
|
||||
// local represents directly-attached storage with node affinity
|
||||
// +optional
|
||||
optional LocalVolumeSource local = 20;
|
||||
|
||||
// StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod
|
||||
// storageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod
|
||||
// More info: https://examples.k8s.io/volumes/storageos/README.md
|
||||
// +optional
|
||||
optional StorageOSPersistentVolumeSource storageos = 21;
|
||||
|
||||
// CSI represents storage that is handled by an external CSI driver (Beta feature).
|
||||
// csi represents storage that is handled by an external CSI driver (Beta feature).
|
||||
// +optional
|
||||
optional CSIPersistentVolumeSource csi = 22;
|
||||
}
|
||||
@ -5536,7 +5536,7 @@ message VolumeProjection {
|
||||
// Represents the source of a volume to mount.
|
||||
// Only one of its members may be specified.
|
||||
message VolumeSource {
|
||||
// HostPath represents a pre-existing file or directory on the host
|
||||
// hostPath represents a pre-existing file or directory on the host
|
||||
// machine that is directly exposed to the container. This is generally
|
||||
// used for system agents or other privileged things that are allowed
|
||||
// to see the host machine. Most containers will NOT need this.
|
||||
@ -5547,131 +5547,131 @@ message VolumeSource {
|
||||
// +optional
|
||||
optional HostPathVolumeSource hostPath = 1;
|
||||
|
||||
// EmptyDir represents a temporary directory that shares a pod's lifetime.
|
||||
// emptyDir represents a temporary directory that shares a pod's lifetime.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
|
||||
// +optional
|
||||
optional EmptyDirVolumeSource emptyDir = 2;
|
||||
|
||||
// GCEPersistentDisk represents a GCE Disk resource that is attached to a
|
||||
// gcePersistentDisk represents a GCE Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
||||
// +optional
|
||||
optional GCEPersistentDiskVolumeSource gcePersistentDisk = 3;
|
||||
|
||||
// AWSElasticBlockStore represents an AWS Disk resource that is attached to a
|
||||
// awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
||||
// +optional
|
||||
optional AWSElasticBlockStoreVolumeSource awsElasticBlockStore = 4;
|
||||
|
||||
// GitRepo represents a git repository at a particular revision.
|
||||
// gitRepo represents a git repository at a particular revision.
|
||||
// DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an
|
||||
// EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
||||
// into the Pod's container.
|
||||
// +optional
|
||||
optional GitRepoVolumeSource gitRepo = 5;
|
||||
|
||||
// Secret represents a secret that should populate this volume.
|
||||
// secret represents a secret that should populate this volume.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
|
||||
// +optional
|
||||
optional SecretVolumeSource secret = 6;
|
||||
|
||||
// NFS represents an NFS mount on the host that shares a pod's lifetime
|
||||
// nfs represents an NFS mount on the host that shares a pod's lifetime
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
|
||||
// +optional
|
||||
optional NFSVolumeSource nfs = 7;
|
||||
|
||||
// ISCSI represents an ISCSI Disk resource that is attached to a
|
||||
// iscsi represents an ISCSI Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod.
|
||||
// More info: https://examples.k8s.io/volumes/iscsi/README.md
|
||||
// +optional
|
||||
optional ISCSIVolumeSource iscsi = 8;
|
||||
|
||||
// Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
||||
// glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
||||
// More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
||||
// +optional
|
||||
optional GlusterfsVolumeSource glusterfs = 9;
|
||||
|
||||
// PersistentVolumeClaimVolumeSource represents a reference to a
|
||||
// persistentVolumeClaimVolumeSource represents a reference to a
|
||||
// PersistentVolumeClaim in the same namespace.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
|
||||
// +optional
|
||||
optional PersistentVolumeClaimVolumeSource persistentVolumeClaim = 10;
|
||||
|
||||
// RBD represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
||||
// rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
||||
// More info: https://examples.k8s.io/volumes/rbd/README.md
|
||||
// +optional
|
||||
optional RBDVolumeSource rbd = 11;
|
||||
|
||||
// FlexVolume represents a generic volume resource that is
|
||||
// flexVolume represents a generic volume resource that is
|
||||
// provisioned/attached using an exec based plugin.
|
||||
// +optional
|
||||
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://examples.k8s.io/mysql-cinder-pd/README.md
|
||||
// +optional
|
||||
optional CinderVolumeSource cinder = 13;
|
||||
|
||||
// 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
|
||||
// +optional
|
||||
optional CephFSVolumeSource cephfs = 14;
|
||||
|
||||
// Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
||||
// flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
||||
// +optional
|
||||
optional FlockerVolumeSource flocker = 15;
|
||||
|
||||
// DownwardAPI represents downward API about the pod that should populate this volume
|
||||
// downwardAPI represents downward API about the pod that should populate this volume
|
||||
// +optional
|
||||
optional DownwardAPIVolumeSource downwardAPI = 16;
|
||||
|
||||
// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
|
||||
// fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
|
||||
// +optional
|
||||
optional FCVolumeSource fc = 17;
|
||||
|
||||
// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
||||
// azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
||||
// +optional
|
||||
optional AzureFileVolumeSource azureFile = 18;
|
||||
|
||||
// ConfigMap represents a configMap that should populate this volume
|
||||
// configMap represents a configMap that should populate this volume
|
||||
// +optional
|
||||
optional ConfigMapVolumeSource configMap = 19;
|
||||
|
||||
// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
||||
// vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
||||
// +optional
|
||||
optional VsphereVirtualDiskVolumeSource vsphereVolume = 20;
|
||||
|
||||
// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
||||
// quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
||||
// +optional
|
||||
optional QuobyteVolumeSource quobyte = 21;
|
||||
|
||||
// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
||||
// azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
||||
// +optional
|
||||
optional AzureDiskVolumeSource azureDisk = 22;
|
||||
|
||||
// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
||||
// photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
||||
optional PhotonPersistentDiskVolumeSource photonPersistentDisk = 23;
|
||||
|
||||
// Items for all in one resources secrets, configmaps, and downward API
|
||||
// projected items for all in one resources secrets, configmaps, and downward API
|
||||
optional ProjectedVolumeSource projected = 26;
|
||||
|
||||
// PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
||||
// portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
||||
// +optional
|
||||
optional PortworxVolumeSource portworxVolume = 24;
|
||||
|
||||
// ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
||||
// scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
||||
// +optional
|
||||
optional ScaleIOVolumeSource scaleIO = 25;
|
||||
|
||||
// StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
||||
// storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
||||
// +optional
|
||||
optional StorageOSVolumeSource storageos = 27;
|
||||
|
||||
// CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).
|
||||
// csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).
|
||||
// +optional
|
||||
optional CSIVolumeSource csi = 28;
|
||||
|
||||
// Ephemeral represents a volume that is handled by a cluster storage driver.
|
||||
// ephemeral represents a volume that is handled by a cluster storage driver.
|
||||
// The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,
|
||||
// and deleted when the pod is removed.
|
||||
//
|
||||
|
@ -47,7 +47,7 @@ type Volume struct {
|
||||
// Represents the source of a volume to mount.
|
||||
// Only one of its members may be specified.
|
||||
type VolumeSource struct {
|
||||
// HostPath represents a pre-existing file or directory on the host
|
||||
// hostPath represents a pre-existing file or directory on the host
|
||||
// machine that is directly exposed to the container. This is generally
|
||||
// used for system agents or other privileged things that are allowed
|
||||
// to see the host machine. Most containers will NOT need this.
|
||||
@ -57,104 +57,104 @@ type VolumeSource struct {
|
||||
// mount host directories as read/write.
|
||||
// +optional
|
||||
HostPath *HostPathVolumeSource `json:"hostPath,omitempty" protobuf:"bytes,1,opt,name=hostPath"`
|
||||
// EmptyDir represents a temporary directory that shares a pod's lifetime.
|
||||
// emptyDir represents a temporary directory that shares a pod's lifetime.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
|
||||
// +optional
|
||||
EmptyDir *EmptyDirVolumeSource `json:"emptyDir,omitempty" protobuf:"bytes,2,opt,name=emptyDir"`
|
||||
// GCEPersistentDisk represents a GCE Disk resource that is attached to a
|
||||
// gcePersistentDisk represents a GCE Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
||||
// +optional
|
||||
GCEPersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty" protobuf:"bytes,3,opt,name=gcePersistentDisk"`
|
||||
// AWSElasticBlockStore represents an AWS Disk resource that is attached to a
|
||||
// awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
||||
// +optional
|
||||
AWSElasticBlockStore *AWSElasticBlockStoreVolumeSource `json:"awsElasticBlockStore,omitempty" protobuf:"bytes,4,opt,name=awsElasticBlockStore"`
|
||||
// GitRepo represents a git repository at a particular revision.
|
||||
// gitRepo represents a git repository at a particular revision.
|
||||
// DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an
|
||||
// EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
|
||||
// into the Pod's container.
|
||||
// +optional
|
||||
GitRepo *GitRepoVolumeSource `json:"gitRepo,omitempty" protobuf:"bytes,5,opt,name=gitRepo"`
|
||||
// Secret represents a secret that should populate this volume.
|
||||
// secret represents a secret that should populate this volume.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#secret
|
||||
// +optional
|
||||
Secret *SecretVolumeSource `json:"secret,omitempty" protobuf:"bytes,6,opt,name=secret"`
|
||||
// NFS represents an NFS mount on the host that shares a pod's lifetime
|
||||
// nfs represents an NFS mount on the host that shares a pod's lifetime
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
|
||||
// +optional
|
||||
NFS *NFSVolumeSource `json:"nfs,omitempty" protobuf:"bytes,7,opt,name=nfs"`
|
||||
// ISCSI represents an ISCSI Disk resource that is attached to a
|
||||
// iscsi represents an ISCSI Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod.
|
||||
// More info: https://examples.k8s.io/volumes/iscsi/README.md
|
||||
// +optional
|
||||
ISCSI *ISCSIVolumeSource `json:"iscsi,omitempty" protobuf:"bytes,8,opt,name=iscsi"`
|
||||
// Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
||||
// glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
|
||||
// More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
||||
// +optional
|
||||
Glusterfs *GlusterfsVolumeSource `json:"glusterfs,omitempty" protobuf:"bytes,9,opt,name=glusterfs"`
|
||||
// PersistentVolumeClaimVolumeSource represents a reference to a
|
||||
// persistentVolumeClaimVolumeSource represents a reference to a
|
||||
// PersistentVolumeClaim in the same namespace.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
|
||||
// +optional
|
||||
PersistentVolumeClaim *PersistentVolumeClaimVolumeSource `json:"persistentVolumeClaim,omitempty" protobuf:"bytes,10,opt,name=persistentVolumeClaim"`
|
||||
// RBD represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
||||
// rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
||||
// More info: https://examples.k8s.io/volumes/rbd/README.md
|
||||
// +optional
|
||||
RBD *RBDVolumeSource `json:"rbd,omitempty" protobuf:"bytes,11,opt,name=rbd"`
|
||||
// FlexVolume represents a generic volume resource that is
|
||||
// flexVolume represents a generic volume resource that is
|
||||
// provisioned/attached using an exec based plugin.
|
||||
// +optional
|
||||
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://examples.k8s.io/mysql-cinder-pd/README.md
|
||||
// +optional
|
||||
Cinder *CinderVolumeSource `json:"cinder,omitempty" protobuf:"bytes,13,opt,name=cinder"`
|
||||
// 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
|
||||
// +optional
|
||||
CephFS *CephFSVolumeSource `json:"cephfs,omitempty" protobuf:"bytes,14,opt,name=cephfs"`
|
||||
// Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
||||
// flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running
|
||||
// +optional
|
||||
Flocker *FlockerVolumeSource `json:"flocker,omitempty" protobuf:"bytes,15,opt,name=flocker"`
|
||||
// DownwardAPI represents downward API about the pod that should populate this volume
|
||||
// downwardAPI represents downward API about the pod that should populate this volume
|
||||
// +optional
|
||||
DownwardAPI *DownwardAPIVolumeSource `json:"downwardAPI,omitempty" protobuf:"bytes,16,opt,name=downwardAPI"`
|
||||
// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
|
||||
// fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
|
||||
// +optional
|
||||
FC *FCVolumeSource `json:"fc,omitempty" protobuf:"bytes,17,opt,name=fc"`
|
||||
// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
||||
// azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
||||
// +optional
|
||||
AzureFile *AzureFileVolumeSource `json:"azureFile,omitempty" protobuf:"bytes,18,opt,name=azureFile"`
|
||||
// ConfigMap represents a configMap that should populate this volume
|
||||
// configMap represents a configMap that should populate this volume
|
||||
// +optional
|
||||
ConfigMap *ConfigMapVolumeSource `json:"configMap,omitempty" protobuf:"bytes,19,opt,name=configMap"`
|
||||
// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
||||
// vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
||||
// +optional
|
||||
VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" protobuf:"bytes,20,opt,name=vsphereVolume"`
|
||||
// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
||||
// quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
||||
// +optional
|
||||
Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" protobuf:"bytes,21,opt,name=quobyte"`
|
||||
// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
||||
// azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
||||
// +optional
|
||||
AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" protobuf:"bytes,22,opt,name=azureDisk"`
|
||||
// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
||||
// photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
||||
PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty" protobuf:"bytes,23,opt,name=photonPersistentDisk"`
|
||||
// Items for all in one resources secrets, configmaps, and downward API
|
||||
// projected items for all in one resources secrets, configmaps, and downward API
|
||||
Projected *ProjectedVolumeSource `json:"projected,omitempty" protobuf:"bytes,26,opt,name=projected"`
|
||||
// PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
||||
// portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
||||
// +optional
|
||||
PortworxVolume *PortworxVolumeSource `json:"portworxVolume,omitempty" protobuf:"bytes,24,opt,name=portworxVolume"`
|
||||
// ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
||||
// scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
||||
// +optional
|
||||
ScaleIO *ScaleIOVolumeSource `json:"scaleIO,omitempty" protobuf:"bytes,25,opt,name=scaleIO"`
|
||||
// StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
||||
// storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
|
||||
// +optional
|
||||
StorageOS *StorageOSVolumeSource `json:"storageos,omitempty" protobuf:"bytes,27,opt,name=storageos"`
|
||||
// CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).
|
||||
// csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).
|
||||
// +optional
|
||||
CSI *CSIVolumeSource `json:"csi,omitempty" protobuf:"bytes,28,opt,name=csi"`
|
||||
// Ephemeral represents a volume that is handled by a cluster storage driver.
|
||||
// ephemeral represents a volume that is handled by a cluster storage driver.
|
||||
// The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,
|
||||
// and deleted when the pod is removed.
|
||||
//
|
||||
@ -200,85 +200,85 @@ type PersistentVolumeClaimVolumeSource struct {
|
||||
// PersistentVolumeSource is similar to VolumeSource but meant for the
|
||||
// administrator who creates PVs. Exactly one of its members must be set.
|
||||
type PersistentVolumeSource struct {
|
||||
// GCEPersistentDisk represents a GCE Disk resource that is attached to a
|
||||
// gcePersistentDisk represents a GCE Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod. Provisioned by an admin.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
|
||||
// +optional
|
||||
GCEPersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty" protobuf:"bytes,1,opt,name=gcePersistentDisk"`
|
||||
// AWSElasticBlockStore represents an AWS Disk resource that is attached to a
|
||||
// awsElasticBlockStore represents an AWS Disk resource that is attached to a
|
||||
// kubelet's host machine and then exposed to the pod.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
|
||||
// +optional
|
||||
AWSElasticBlockStore *AWSElasticBlockStoreVolumeSource `json:"awsElasticBlockStore,omitempty" protobuf:"bytes,2,opt,name=awsElasticBlockStore"`
|
||||
// HostPath represents a directory on the host.
|
||||
// hostPath represents a directory on the host.
|
||||
// Provisioned by a developer or tester.
|
||||
// This is useful for single-node development and testing only!
|
||||
// On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
|
||||
// +optional
|
||||
HostPath *HostPathVolumeSource `json:"hostPath,omitempty" protobuf:"bytes,3,opt,name=hostPath"`
|
||||
// Glusterfs represents a Glusterfs volume that is attached to a host and
|
||||
// glusterfs represents a Glusterfs volume that is attached to a host and
|
||||
// exposed to the pod. Provisioned by an admin.
|
||||
// More info: https://examples.k8s.io/volumes/glusterfs/README.md
|
||||
// +optional
|
||||
Glusterfs *GlusterfsPersistentVolumeSource `json:"glusterfs,omitempty" protobuf:"bytes,4,opt,name=glusterfs"`
|
||||
// NFS represents an NFS mount on the host. Provisioned by an admin.
|
||||
// nfs represents an NFS mount on the host. Provisioned by an admin.
|
||||
// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
|
||||
// +optional
|
||||
NFS *NFSVolumeSource `json:"nfs,omitempty" protobuf:"bytes,5,opt,name=nfs"`
|
||||
// RBD represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
||||
// rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
|
||||
// More info: https://examples.k8s.io/volumes/rbd/README.md
|
||||
// +optional
|
||||
RBD *RBDPersistentVolumeSource `json:"rbd,omitempty" protobuf:"bytes,6,opt,name=rbd"`
|
||||
// ISCSI represents an ISCSI Disk resource that is attached to a
|
||||
// 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.
|
||||
// +optional
|
||||
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://examples.k8s.io/mysql-cinder-pd/README.md
|
||||
// +optional
|
||||
Cinder *CinderPersistentVolumeSource `json:"cinder,omitempty" protobuf:"bytes,8,opt,name=cinder"`
|
||||
// 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
|
||||
// +optional
|
||||
CephFS *CephFSPersistentVolumeSource `json:"cephfs,omitempty" protobuf:"bytes,9,opt,name=cephfs"`
|
||||
// FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
|
||||
// fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.
|
||||
// +optional
|
||||
FC *FCVolumeSource `json:"fc,omitempty" protobuf:"bytes,10,opt,name=fc"`
|
||||
// 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 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
|
||||
// +optional
|
||||
Flocker *FlockerVolumeSource `json:"flocker,omitempty" protobuf:"bytes,11,opt,name=flocker"`
|
||||
// FlexVolume represents a generic volume resource that is
|
||||
// flexVolume represents a generic volume resource that is
|
||||
// provisioned/attached using an exec based plugin.
|
||||
// +optional
|
||||
FlexVolume *FlexPersistentVolumeSource `json:"flexVolume,omitempty" protobuf:"bytes,12,opt,name=flexVolume"`
|
||||
// AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
||||
// azureFile represents an Azure File Service mount on the host and bind mount to the pod.
|
||||
// +optional
|
||||
AzureFile *AzureFilePersistentVolumeSource `json:"azureFile,omitempty" protobuf:"bytes,13,opt,name=azureFile"`
|
||||
// VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
||||
// vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
|
||||
// +optional
|
||||
VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" protobuf:"bytes,14,opt,name=vsphereVolume"`
|
||||
// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
||||
// quobyte represents a Quobyte mount on the host that shares a pod's lifetime
|
||||
// +optional
|
||||
Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" protobuf:"bytes,15,opt,name=quobyte"`
|
||||
// AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
||||
// azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
|
||||
// +optional
|
||||
AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" protobuf:"bytes,16,opt,name=azureDisk"`
|
||||
// PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
||||
// photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
|
||||
PhotonPersistentDisk *PhotonPersistentDiskVolumeSource `json:"photonPersistentDisk,omitempty" protobuf:"bytes,17,opt,name=photonPersistentDisk"`
|
||||
// PortworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
||||
// portworxVolume represents a portworx volume attached and mounted on kubelets host machine
|
||||
// +optional
|
||||
PortworxVolume *PortworxVolumeSource `json:"portworxVolume,omitempty" protobuf:"bytes,18,opt,name=portworxVolume"`
|
||||
// ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
||||
// scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
|
||||
// +optional
|
||||
ScaleIO *ScaleIOPersistentVolumeSource `json:"scaleIO,omitempty" protobuf:"bytes,19,opt,name=scaleIO"`
|
||||
// Local represents directly-attached storage with node affinity
|
||||
// local represents directly-attached storage with node affinity
|
||||
// +optional
|
||||
Local *LocalVolumeSource `json:"local,omitempty" protobuf:"bytes,20,opt,name=local"`
|
||||
// StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod
|
||||
// storageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod
|
||||
// More info: https://examples.k8s.io/volumes/storageos/README.md
|
||||
// +optional
|
||||
StorageOS *StorageOSPersistentVolumeSource `json:"storageos,omitempty" protobuf:"bytes,21,opt,name=storageos"`
|
||||
// CSI represents storage that is handled by an external CSI driver (Beta feature).
|
||||
// csi represents storage that is handled by an external CSI driver (Beta feature).
|
||||
// +optional
|
||||
CSI *CSIPersistentVolumeSource `json:"csi,omitempty" protobuf:"bytes,22,opt,name=csi"`
|
||||
}
|
||||
|
@ -1364,28 +1364,28 @@ func (PersistentVolumeList) SwaggerDoc() map[string]string {
|
||||
|
||||
var map_PersistentVolumeSource = map[string]string{
|
||||
"": "PersistentVolumeSource is similar to VolumeSource but meant for the administrator who creates PVs. Exactly one of its members must be set.",
|
||||
"gcePersistentDisk": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
|
||||
"awsElasticBlockStore": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
|
||||
"hostPath": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
|
||||
"glusterfs": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md",
|
||||
"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://examples.k8s.io/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.",
|
||||
"cinder": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
|
||||
"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.",
|
||||
"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",
|
||||
"flexVolume": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
|
||||
"azureFile": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
|
||||
"vsphereVolume": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine",
|
||||
"quobyte": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime",
|
||||
"azureDisk": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
|
||||
"photonPersistentDisk": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine",
|
||||
"portworxVolume": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine",
|
||||
"scaleIO": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.",
|
||||
"local": "Local represents directly-attached storage with node affinity",
|
||||
"storageos": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md",
|
||||
"csi": "CSI represents storage that is handled by an external CSI driver (Beta feature).",
|
||||
"gcePersistentDisk": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
|
||||
"awsElasticBlockStore": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
|
||||
"hostPath": "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
|
||||
"glusterfs": "glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md",
|
||||
"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://examples.k8s.io/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.",
|
||||
"cinder": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
|
||||
"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.",
|
||||
"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",
|
||||
"flexVolume": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
|
||||
"azureFile": "azureFile represents an Azure File Service mount on the host and bind mount to the pod.",
|
||||
"vsphereVolume": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine",
|
||||
"quobyte": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime",
|
||||
"azureDisk": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
|
||||
"photonPersistentDisk": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine",
|
||||
"portworxVolume": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine",
|
||||
"scaleIO": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.",
|
||||
"local": "local represents directly-attached storage with node affinity",
|
||||
"storageos": "storageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md",
|
||||
"csi": "csi represents storage that is handled by an external CSI driver (Beta feature).",
|
||||
}
|
||||
|
||||
func (PersistentVolumeSource) SwaggerDoc() map[string]string {
|
||||
@ -2477,35 +2477,35 @@ func (VolumeProjection) SwaggerDoc() map[string]string {
|
||||
|
||||
var map_VolumeSource = map[string]string{
|
||||
"": "Represents the source of a volume to mount. Only one of its members may be specified.",
|
||||
"hostPath": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
|
||||
"emptyDir": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
|
||||
"gcePersistentDisk": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
|
||||
"awsElasticBlockStore": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
|
||||
"gitRepo": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
|
||||
"secret": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
|
||||
"nfs": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
|
||||
"iscsi": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md",
|
||||
"glusterfs": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md",
|
||||
"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://examples.k8s.io/volumes/rbd/README.md",
|
||||
"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://examples.k8s.io/mysql-cinder-pd/README.md",
|
||||
"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",
|
||||
"downwardAPI": "DownwardAPI represents downward API about the pod that should populate this volume",
|
||||
"fc": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.",
|
||||
"azureFile": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
|
||||
"configMap": "ConfigMap represents a configMap that should populate this volume",
|
||||
"vsphereVolume": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine",
|
||||
"quobyte": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime",
|
||||
"azureDisk": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
|
||||
"photonPersistentDisk": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine",
|
||||
"projected": "Items for all in one resources secrets, configmaps, and downward API",
|
||||
"portworxVolume": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine",
|
||||
"scaleIO": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.",
|
||||
"storageos": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.",
|
||||
"csi": "CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).",
|
||||
"ephemeral": "Ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time.",
|
||||
"hostPath": "hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
|
||||
"emptyDir": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
|
||||
"gcePersistentDisk": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
|
||||
"awsElasticBlockStore": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
|
||||
"gitRepo": "gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
|
||||
"secret": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
|
||||
"nfs": "nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
|
||||
"iscsi": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md",
|
||||
"glusterfs": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md",
|
||||
"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://examples.k8s.io/volumes/rbd/README.md",
|
||||
"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://examples.k8s.io/mysql-cinder-pd/README.md",
|
||||
"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",
|
||||
"downwardAPI": "downwardAPI represents downward API about the pod that should populate this volume",
|
||||
"fc": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.",
|
||||
"azureFile": "azureFile represents an Azure File Service mount on the host and bind mount to the pod.",
|
||||
"configMap": "configMap represents a configMap that should populate this volume",
|
||||
"vsphereVolume": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine",
|
||||
"quobyte": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime",
|
||||
"azureDisk": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
|
||||
"photonPersistentDisk": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine",
|
||||
"projected": "projected items for all in one resources secrets, configmaps, and downward API",
|
||||
"portworxVolume": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine",
|
||||
"scaleIO": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.",
|
||||
"storageos": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.",
|
||||
"csi": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).",
|
||||
"ephemeral": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time.",
|
||||
}
|
||||
|
||||
func (VolumeSource) SwaggerDoc() map[string]string {
|
||||
|
Loading…
Reference in New Issue
Block a user