UNPKG

kubernetes-models

Version:
28 lines (27 loc) 630 B
import { register } from "@kubernetes-models/validate"; const schema = { "properties": { "fsType": { "type": "string", "nullable": true }, "storagePolicyID": { "type": "string", "nullable": true }, "storagePolicyName": { "type": "string", "nullable": true }, "volumePath": { "type": "string" } }, "required": [ "volumePath" ], "type": "object" }; export function addSchema() { register("io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource", schema); }