UNPKG

kubernetes-models

Version:
25 lines (24 loc) 541 B
import { register } from "@kubernetes-models/validate"; const schema = { "properties": { "localhostProfile": { "type": "string", "nullable": true }, "type": { "enum": [ "Localhost", "RuntimeDefault", "Unconfined" ], "type": "string" } }, "required": [ "type" ], "type": "object" }; export function addSchema() { register("io.k8s.api.core.v1.SeccompProfile", schema); }