@jkcfg/kubernetes
Version:
jk Kubernetes library
25 lines • 591 B
JSON
{
"description": "volumeDevice describes a mapping of a raw block device within a container.",
"required": [
"name",
"devicePath"
],
"properties": {
"devicePath": {
"description": "devicePath is the path inside of the container that the device will be mapped to.",
"type": [
"string",
"null"
]
},
"name": {
"description": "name must match the name of a persistentVolumeClaim in the pod",
"type": [
"string",
"null"
]
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}