You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the `BoundServiceAccountTokenVolume` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/) is enabled, the service account admission controller will
136
-
add the following projected volume instead of a Secret-based volume for the non-expiring service account token created by Token Controller.
134
+
The ServiceAccount admission controller will add the following projected volume instead of a Secret-based volume for the non-expiring service account token created by Token Controller.
@@ -165,7 +162,7 @@ add the following projected volume instead of a Secret-based volume for the non-
165
162
This projected volume consists of three sources:
166
163
167
164
1. A ServiceAccountToken acquired from kube-apiserver via TokenRequest API. It will expire after 1 hour by default or when the pod is deleted. It is bound to the pod and has kube-apiserver as the audience.
168
-
1. A ConfigMap containing a CA bundle used for verifying connections to the kube-apiserver. This feature depends on the `RootCAConfigMap` feature gate being enabled, which publishes a "kube-root-ca.crt" ConfigMap to every namespace. `RootCAConfigMap` is enabled by default in 1.20, and always enabled in 1.21+.
165
+
1. A ConfigMap containing a CA bundle used for verifying connections to the kube-apiserver. This feature depends on the `RootCAConfigMap` feature gate, which publishes a "kube-root-ca.crt" ConfigMap to every namespace. `RootCAConfigMap` feature gate is graduated to GA in 1.21 and default to true. (This feature will be removed from --feature-gate arg in 1.22).
169
166
1. A DownwardAPI that references the namespace of the pod.
170
167
-->
171
168
此投射卷有三个数据源:
@@ -174,27 +171,18 @@ This projected volume consists of three sources:
174
171
这一令牌默认会在一个小时之后或者 Pod 被删除时过期。
175
172
该令牌绑定到 Pod 实例上,并将 kube-apiserver 作为其受众(audience)。
176
173
1. 包含用来验证与 kube-apiserver 连接的 CA 证书包的 ConfigMap 对象。
0 commit comments