UNPKG

kubernetes-models

Version:
24 lines (23 loc) 593 B
import { register } from "@kubernetes-models/validate"; const schema = { "properties": { "labelSelectorPath": { "type": "string", "nullable": true }, "specReplicasPath": { "type": "string" }, "statusReplicasPath": { "type": "string" } }, "required": [ "specReplicasPath", "statusReplicasPath" ], "type": "object" }; export function addSchema() { register("io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale", schema); }