Skip to content

Commit da5ab55

Browse files
authored
Merge pull request #25966 from Marusyk/Marusyk-patch-1
Clean up too old content from Using Admission Controllers page
2 parents 466de5e + 0245ad3 commit da5ab55

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

content/en/docs/reference/access-authn-authz/admission-controllers.md

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -792,25 +792,8 @@ versions 1.9 and later).
792792

793793
## Is there a recommended set of admission controllers to use?
794794

795-
Yes. For Kubernetes version 1.10 and later, the recommended admission controllers are enabled by default (shown [here](/docs/reference/command-line-tools-reference/kube-apiserver/#options)), so you do not need to explicitly specify them. You can enable additional admission controllers beyond the default set using the `--enable-admission-plugins` flag (**order doesn't matter**).
795+
Yes. The recommended admission controllers are enabled by default (shown [here](/docs/reference/command-line-tools-reference/kube-apiserver/#options)), so you do not need to explicitly specify them. You can enable additional admission controllers beyond the default set using the `--enable-admission-plugins` flag (**order doesn't matter**).
796796

797797
{{< note >}}
798798
`--admission-control` was deprecated in 1.10 and replaced with `--enable-admission-plugins`.
799799
{{< /note >}}
800-
801-
For Kubernetes 1.9 and earlier, we recommend running the following set of admission controllers using the `--admission-control` flag (**order matters**).
802-
803-
* v1.9
804-
805-
```shell
806-
--admission-control=NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota
807-
```
808-
809-
* It's worth reiterating that in 1.9, these happen in a mutating phase
810-
and a validating phase, and that for example `ResourceQuota` runs in the validating
811-
phase, and therefore is the last admission controller to run.
812-
`MutatingAdmissionWebhook` appears before it in this list, because it runs
813-
in the mutating phase.
814-
815-
For earlier versions, there was no concept of validating versus mutating and the
816-
admission controllers ran in the exact order specified.

0 commit comments

Comments
 (0)