mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-19 08:54:44 +00:00
Generated code for local persistent volumes
This commit is contained in:
@@ -44496,6 +44496,18 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"io.k8s.kubernetes.pkg.api.v1.LocalVolumeSource": {
|
||||
"description": "Local represents directly-attached storage with node affinity",
|
||||
"required": [
|
||||
"path"
|
||||
],
|
||||
"properties": {
|
||||
"path": {
|
||||
"description": "The full path to the volume on the node For alpha, this path must be a directory Once block as a source is supported, then this path can point to a block device",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"io.k8s.kubernetes.pkg.api.v1.NFSVolumeSource": {
|
||||
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
|
||||
"required": [
|
||||
@@ -45273,6 +45285,10 @@
|
||||
"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.",
|
||||
"$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.ISCSIVolumeSource"
|
||||
},
|
||||
"local": {
|
||||
"description": "Local represents directly-attached storage with node affinity",
|
||||
"$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.LocalVolumeSource"
|
||||
},
|
||||
"nfs": {
|
||||
"description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
|
||||
"$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.NFSVolumeSource"
|
||||
|
@@ -18966,6 +18966,10 @@
|
||||
"$ref": "v1.ScaleIOVolumeSource",
|
||||
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
|
||||
},
|
||||
"local": {
|
||||
"$ref": "v1.LocalVolumeSource",
|
||||
"description": "Local represents directly-attached storage with node affinity"
|
||||
},
|
||||
"accessModes": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -19536,6 +19540,19 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1.LocalVolumeSource": {
|
||||
"id": "v1.LocalVolumeSource",
|
||||
"description": "Local represents directly-attached storage with node affinity",
|
||||
"required": [
|
||||
"path"
|
||||
],
|
||||
"properties": {
|
||||
"path": {
|
||||
"type": "string",
|
||||
"description": "The full path to the volume on the node For alpha, this path must be a directory Once block as a source is supported, then this path can point to a block device"
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1.PersistentVolumeStatus": {
|
||||
"id": "v1.PersistentVolumeStatus",
|
||||
"description": "PersistentVolumeStatus is the current status of a persistent volume.",
|
||||
|
Reference in New Issue
Block a user