From b9f6598c9ea4ec36a12c56a1dcce860f062e77cf Mon Sep 17 00:00:00 2001 From: Patrick East Date: Tue, 6 Aug 2019 15:08:50 -0700 Subject: [PATCH] Add "Admission Controller" to the glossary (#15196) This gives a brief description for the admission controller and links to the main docs for them. --- .../glossary/admission-controller.md | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 content/en/docs/reference/glossary/admission-controller.md diff --git a/content/en/docs/reference/glossary/admission-controller.md b/content/en/docs/reference/glossary/admission-controller.md new file mode 100644 index 0000000000..352ccb4f52 --- /dev/null +++ b/content/en/docs/reference/glossary/admission-controller.md @@ -0,0 +1,22 @@ +--- +title: Admission Controller +id: admission-controller +date: 2019-06-28 +full_link: /docs/reference/access-authn-authz/admission-controllers/ +short_description: > + A piece of code that intercepts requests to the Kubernetes API server prior to persistence of the object. + +aka: +tags: +- extension +- security +--- +A piece of code that intercepts requests to the Kubernetes API server prior to persistence of the object. + + + +Admission controllers are configurable for the Kubernetes API server and may be “validating”, “mutating”, or +both. Any admission controller may reject the request. Mutating controllers may modify the objects they admit; +validating controllers may not. + +* [Admission controllers in the Kubernetes documentation](/docs/reference/access-authn-authz/admission-controllers/)