@@ -462,8 +462,6 @@ and the [example of Limit Range](/docs/tasks/administer-cluster/manage-resources
462
462
463
463
# ## MutatingAdmissionWebhook {#mutatingadmissionwebhook}
464
464
465
- {{< feature-state for_k8s_version="v1.13" state="beta" >}}
466
-
467
465
This admission controller calls any mutating webhooks which match the request. Matching
468
466
webhooks are called in serial; each one may modify the object if it desires.
469
467
@@ -474,7 +472,7 @@ If a webhook called by this has side effects (for example, decrementing quota) i
474
472
webhooks or validating admission controllers will permit the request to finish.
475
473
476
474
If you disable the MutatingAdmissionWebhook, you must also disable the
477
- ` MutatingWebhookConfiguration` object in the `admissionregistration.k8s.io/v1beta1 `
475
+ ` MutatingWebhookConfiguration` object in the `admissionregistration.k8s.io/v1 `
478
476
group/version via the `--runtime-config` flag (both are on by default in
479
477
versions >= 1.9).
480
478
@@ -486,8 +484,6 @@ versions >= 1.9).
486
484
different when read back.
487
485
* Setting originally unset fields is less likely to cause problems than
488
486
overwriting fields set in the original request. Avoid doing the latter.
489
- * This is a beta feature. Future versions of Kubernetes may restrict the types of
490
- mutations these webhooks can make.
491
487
* Future changes to control loops for built-in resources or third-party resources
492
488
may break webhooks that work well today. Even when the webhook installation API
493
489
is finalized, not all possible webhook behaviors will be guaranteed to be supported
@@ -766,8 +762,6 @@ This admission controller {{< glossary_tooltip text="taints" term_id="taint" >}}
766
762
767
763
# ## ValidatingAdmissionWebhook {#validatingadmissionwebhook}
768
764
769
- {{< feature-state for_k8s_version="v1.13" state="beta" >}}
770
-
771
765
This admission controller calls any validating webhooks which match the request. Matching
772
766
webhooks are called in parallel; if any of them rejects the request, the request
773
767
fails. This admission controller only runs in the validation phase; the webhooks it calls may not
@@ -778,7 +772,7 @@ If a webhook called by this has side effects (for example, decrementing quota) i
778
772
webhooks or other validating admission controllers will permit the request to finish.
779
773
780
774
If you disable the ValidatingAdmissionWebhook, you must also disable the
781
- ` ValidatingWebhookConfiguration` object in the `admissionregistration.k8s.io/v1beta1 `
775
+ ` ValidatingWebhookConfiguration` object in the `admissionregistration.k8s.io/v1 `
782
776
group/version via the `--runtime-config` flag (both are on by default in
783
777
versions 1.9 and later).
784
778
0 commit comments