UNPKG

kubernetes-models

Version:
33 lines (32 loc) 787 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.addSchema = void 0; const validate_1 = require("@kubernetes-models/validate"); const schema = { "properties": { "fsType": { "type": "string", "nullable": true }, "partition": { "format": "int32", "type": "integer", "nullable": true }, "pdName": { "type": "string" }, "readOnly": { "type": "boolean", "nullable": true } }, "required": [ "pdName" ], "type": "object" }; function addSchema() { (0, validate_1.register)("io.k8s.api.core.v1.GCEPersistentDiskVolumeSource", schema); } exports.addSchema = addSchema;