kubernetes-models
Version:
21 lines (20 loc) • 458 B
JavaScript
import { register } from "@kubernetes-models/validate";
const schema = {
"properties": {
"hostnames": {
"items": {
"type": "string"
},
"type": "array",
"nullable": true
},
"ip": {
"type": "string",
"nullable": true
}
},
"type": "object"
};
export function addSchema() {
register("io.k8s.api.core.v1.HostAlias", schema);
}