UNPKG

kubernetes-models

Version:
26 lines (25 loc) 649 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.addSchema = void 0; const validate_1 = require("@kubernetes-models/validate"); const schema = { "properties": { "ready": { "type": "boolean", "nullable": true }, "serving": { "type": "boolean", "nullable": true }, "terminating": { "type": "boolean", "nullable": true } }, "type": "object" }; function addSchema() { (0, validate_1.register)("io.k8s.api.discovery.v1.EndpointConditions", schema); } exports.addSchema = addSchema;