kubernetes-models
Version:
24 lines (23 loc) • 547 B
JavaScript
import { register } from "@kubernetes-models/validate";
const schema = {
"properties": {
"failed": {
"items": {
"type": "string"
},
"type": "array",
"nullable": true
},
"succeeded": {
"items": {
"type": "string"
},
"type": "array",
"nullable": true
}
},
"type": "object"
};
export function addSchema() {
register("io.k8s.api.batch.v1.UncountedTerminatedPods", schema);
}