UNPKG

kubernetes-models

Version:
20 lines (19 loc) 405 B
import { register } from "@kubernetes-models/validate"; const schema = { "properties": { "fsType": { "type": "string", "nullable": true }, "path": { "type": "string" } }, "required": [ "path" ], "type": "object" }; export function addSchema() { register("io.k8s.api.core.v1.LocalVolumeSource", schema); }