kubernetes-models
Version:
29 lines (28 loc) • 758 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.addSchema = void 0;
const validate_1 = require("@kubernetes-models/validate");
const schema = {
"properties": {
"handSize": {
"format": "int32",
"type": "integer",
"nullable": true
},
"queueLengthLimit": {
"format": "int32",
"type": "integer",
"nullable": true
},
"queues": {
"format": "int32",
"type": "integer",
"nullable": true
}
},
"type": "object"
};
function addSchema() {
(0, validate_1.register)("io.k8s.api.flowcontrol.v1beta2.QueuingConfiguration", schema);
}
exports.addSchema = addSchema;