# Packages

Package admission provides implementation for admission webhook and methods to implement admission webhook handlers.

# Variables

Allowed indicates that the admission request should be allowed for the given reason.
Denied indicates that the admission request should be denied for the given reason.
Errored indicates that an error occurred in the admission request.
Patched indicates that the admission request should be allowed for the given reason, and that the contained object should be mutated using the given patches.

# Structs

Server is an admission webhook server that can serve traffic and generates related k8s resources for deploying.

# Type aliases

Admission is webhook suitable for registration with the server an admission webhook that validates API operations and potentially mutates their contents.
AdmissionDecoder knows how to decode objects from admission requests.
AdmissionHandler knows how to process admission requests, validating them, and potentially mutating the objects they contain.
AdmissionRequest defines the input for an admission handler.
AdmissionResponse is the output of an admission handler.
JSONPatchOp represents a single JSONPatch patch operation.