From 831970173344293f9ab415d88f88095698f868c7 Mon Sep 17 00:00:00 2001 From: huzhengchuan Date: Mon, 29 Jan 2018 07:06:31 +0800 Subject: [PATCH] fix typos in extending doc (#7110) --- docs/concepts/overview/extending.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/overview/extending.md b/docs/concepts/overview/extending.md index 41e6ccdf42..d13e732f0e 100644 --- a/docs/concepts/overview/extending.md +++ b/docs/concepts/overview/extending.md @@ -151,7 +151,7 @@ Kubernetes provides several built-in authentication methods, and an [Authenticat ### Dynamic Admission Control -After a request is authorized, if it is a write operation, it also t goes through [Admission Control](/docs/admin/admission-controllers/) steps. In addition to the built-in steps, there are several extensions: +After a request is authorized, if it is a write operation, it also goes through [Admission Control](/docs/admin/admission-controllers/) steps. In addition to the built-in steps, there are several extensions: * The [Image Policy webhook](/docs/admin/admission-controllers/#imagepolicywebhook) restricts what images can be run in containers. * To make arbitrary admission control decisions, a general [Admission webhook](/docs/admin/extensible-admission-controllers/#external-admission-webhooks) can be used. Admission Webhooks can reject creations or updates.