@jkcfg/kubernetes
Version:
jk Kubernetes library
30 lines • 829 B
JSON
{
"description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
"required": [
"attacher",
"source",
"nodeName"
],
"properties": {
"attacher": {
"description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
"type": [
"string",
"null"
]
},
"nodeName": {
"description": "The node that the volume should be attached to.",
"type": [
"string",
"null"
]
},
"source": {
"description": "Source represents the volume that should be attached.",
"$ref": "_definitions.json#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}