From a5515a7c0e8a4ed15577d89189413ee7cd0ff6b7 Mon Sep 17 00:00:00 2001 From: Mikalai Radchuk <509198+m1kola@users.noreply.github.com> Date: Tue, 7 Jan 2020 23:07:42 +0000 Subject: [PATCH] Fixes list rendering (#18499) --- .../access-authn-authz/extensible-admission-controllers.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/docs/reference/access-authn-authz/extensible-admission-controllers.md b/content/en/docs/reference/access-authn-authz/extensible-admission-controllers.md index b23f52f456..469d1267f0 100644 --- a/content/en/docs/reference/access-authn-authz/extensible-admission-controllers.md +++ b/content/en/docs/reference/access-authn-authz/extensible-admission-controllers.md @@ -961,6 +961,7 @@ Allowed values are `Exact` or `Equivalent`. * `Equivalent` means a request should be intercepted if modifies a resource listed in `rules`, even via another API group or version. In the example given above, the webhook that only registered for `apps/v1` could use `matchPolicy`: + * `matchPolicy: Exact` would mean the `extensions/v1beta1` request would not be sent to the webhook * `matchPolicy: Equivalent` means the `extensions/v1beta1` request would be sent to the webhook (with the objects converted to a version the webhook had specified: `apps/v1`)