From 147668a7d252fb944de4d53996159fc51fa9c38c Mon Sep 17 00:00:00 2001 From: Ramkumar Gowrishankar Date: Fri, 18 Sep 2020 11:38:18 -0400 Subject: [PATCH] Add reference to default-not-ready-toleration-seconds and default-unreachable-toleration-seconds k8s-apiserver input parameters in the subsection describing the DefaultTolerationSeconds admission controller --- .../reference/access-authn-authz/admission-controllers.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/content/en/docs/reference/access-authn-authz/admission-controllers.md b/content/en/docs/reference/access-authn-authz/admission-controllers.md index f98d1805e4..29639ac161 100644 --- a/content/en/docs/reference/access-authn-authz/admission-controllers.md +++ b/content/en/docs/reference/access-authn-authz/admission-controllers.md @@ -163,10 +163,11 @@ storage classes and how to mark a storage class as default. ### DefaultTolerationSeconds {#defaulttolerationseconds} This admission controller sets the default forgiveness toleration for pods to tolerate -the taints `notready:NoExecute` and `unreachable:NoExecute` for 5 minutes, -if the pods don't already have toleration for taints -`node.kubernetes.io/not-ready:NoExecute` or +the taints `notready:NoExecute` and `unreachable:NoExecute` based on the k8s-apiserver input parameters +`default-not-ready-toleration-seconds` and `default-unreachable-toleration-seconds` if the pods don't already +have toleration for taints `node.kubernetes.io/not-ready:NoExecute` or `node.kubernetes.io/unreachable:NoExecute`. +The default value for `default-not-ready-toleration-seconds` and `default-unreachable-toleration-seconds` is 5 minutes. ### DenyExecOnPrivileged {#denyexeconprivileged}