UNPKG

kubernetes-models

Version:
22 lines (21 loc) 547 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.addSchema = void 0; const validate_1 = require("@kubernetes-models/validate"); const schema = { "properties": { "name": { "type": "string", "nullable": true }, "optional": { "type": "boolean", "nullable": true } }, "type": "object" }; function addSchema() { (0, validate_1.register)("io.k8s.api.core.v1.ConfigMapEnvSource", schema); } exports.addSchema = addSchema;