security
Controls deletion protection, namespace protection, and admission webhooks for the Katalog.
security:
serviceName: orkestra-svc # Kubernetes Service where Orkestra is deployed
deletionProtection:
enabled: true
failurePolicy: Fail
cleanupOnShutdown: false
namespaceProtection:
enabled: true
restrictedNamespaces:
- kube-system
- production
allowedNamespaces:
- dev
- staging
failurePolicy: Fail
cleanupOnShutdown: false
webhooks:
admission:
enabled: true
failurePolicy: Fail
serviceName: orkestra-svc
cleanupOnShutdown: false
conversion:
enabled: true
conversionWindow: 100
deletionProtection
Registers a ValidatingWebhookConfiguration that blocks deletion of CRs managed by this Katalog.
| Field | Default | Description |
|---|---|---|
enabled | true (when block declared) | Activate the deletion protection webhook. |
failurePolicy | Fail | Fail — block deletion on webhook error; Ignore — allow deletion on error. |
cleanupOnShutdown | false | Delete the ValidatingWebhookConfiguration on graceful shutdown. |
namespaceProtection
Blocks CRs from being created in forbidden namespaces via a ValidatingWebhookConfiguration.
| Field | Default | Description |
|---|---|---|
enabled | true (when block declared) | Activate namespace protection. |
restrictedNamespaces | — | List of namespaces where CRs are denied. |
allowedNamespaces | — | List of namespaces where CRs are allowed. All others are denied. |
failurePolicy | Fail | Fail or Ignore on webhook error. |
cleanupOnShutdown | false | Delete the webhook config on graceful shutdown. |
Declare restrictedNamespaces OR allowedNamespaces — not both. Override per-CRD via crd-entry.md#restrictedNamespaces.
webhooks
Global admission webhook settings used by validation and mutation rules.
| Field | Default | Description |
|---|---|---|
admission.enabled | false | Register ValidatingWebhookConfiguration for declarative rules. |
failurePolicy | Fail | Fail or Ignore on webhook error. |
serviceName | — | Kubernetes Service the webhook calls back to. |
cleanupOnShutdown | false | Delete webhook config on shutdown. |
Per-CRD overrides: spec.crds.<name>.webhooks.
conversion
Enables the /convert endpoint for multi-version CRD support.
| Field | Default | Description |
|---|---|---|
enabled | false | Register the /convert endpoint. |
conversionWindow | 100 | Rolling window size for conversion stats. |
Requires conversion to be declared on the CRD entry. → See conversion.md.
→ Next: katalog-notification.md