@jkcfg/kubernetes
Version:
jk Kubernetes library
25 lines • 537 B
JSON
{
"$schema": "http://json-schema.org/schema#",
"required": [
"name",
"devicePath"
],
"type": "object",
"description": "AttachedVolume describes a volume attached to a node",
"properties": {
"devicePath": {
"type": [
"string",
"null"
],
"description": "DevicePath represents the device path where the volume should be available"
},
"name": {
"type": [
"string",
"null"
],
"description": "Name of the attached volume"
}
}
}