Skip to content

Commit 3ecbb41

Browse files
committed
[zh] Fix some links in the zh-cn localization site
1 parent 62014f3 commit 3ecbb41

File tree

18 files changed

+68
-55
lines changed

18 files changed

+68
-55
lines changed

content/zh-cn/docs/concepts/cluster-administration/flow-control.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,7 @@ the [enhancement proposal](https://github.com/kubernetes/enhancements/tree/maste
14131413
- You can make suggestions and feature requests via [SIG API Machinery](https://github.com/kubernetes/community/tree/master/sig-api-machinery)
14141414
or the feature's [slack channel](https://kubernetes.slack.com/messages/api-priority-and-fairness).
14151415
-->
1416-
- 你可以查阅流控[参考文档](/zh-cn/docs/reference/flow-control/)了解有关故障排查的更多信息。
1416+
- 你可以查阅流控[参考文档](/zh-cn/docs/reference/debug-cluster/flow-control/)了解有关故障排查的更多信息。
14171417
- 有关 API 优先级和公平性的设计细节的背景信息,
14181418
请参阅[增强提案](https://github.com/kubernetes/enhancements/tree/master/keps/sig-api-machinery/1040-priority-and-fairness)
14191419
- 你可以通过 [SIG API Machinery](https://github.com/kubernetes/community/tree/master/sig-api-machinery/)

content/zh-cn/docs/concepts/configuration/configmap.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ ConfigMap 在设计上不是用来保存大量数据的。在 ConfigMap 中保
6161
<!--
6262
## ConfigMap object
6363
64-
A ConfigMap is an API [object](/docs/concepts/overview/working-with-objects/kubernetes-objects/)
64+
A ConfigMap is an {{< glossary_tooltip text="API object" term_id="object" >}}
6565
that lets you store configuration for other objects to use. Unlike most
6666
Kubernetes objects that have a `spec`, a ConfigMap has `data` and `binaryData`
6767
fields. These fields accept key-value pairs as their values. Both the `data`
@@ -74,8 +74,7 @@ The name of a ConfigMap must be a valid
7474
-->
7575
## ConfigMap 对象
7676

77-
ConfigMap 是一个 API [对象](/zh-cn/docs/concepts/overview/working-with-objects/kubernetes-objects/)
78-
让你可以存储其他对象所需要使用的配置。
77+
ConfigMap 是一个让你可以存储其他对象所需要使用的配置的 {{< glossary_tooltip text="API 对象" term_id="object" >}}。
7978
和其他 Kubernetes 对象都有一个 `spec` 不同的是,ConfigMap 使用 `data`
8079
`binaryData` 字段。这些字段能够接收键-值对作为其取值。`data``binaryData`
8180
字段都是可选的。`data` 字段设计用来保存 UTF-8 字符串,而 `binaryData`
@@ -190,7 +189,7 @@ Here's an example Pod that uses values from `game-demo` to configure a Pod:
190189

191190
下面是一个 Pod 的示例,它通过使用 `game-demo` 中的值来配置一个 Pod:
192191

193-
{{% code file="configmap/configure-pod.yaml" %}}
192+
{{% code_sample file="configmap/configure-pod.yaml" %}}
194193

195194
<!--
196195
A ConfigMap doesn't differentiate between single line property values and

content/zh-cn/docs/concepts/containers/images.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ See [Configure a kubelet image credential provider](/docs/tasks/administer-clust
505505
你可以配置 kubelet,以调用插件可执行文件的方式来动态获取容器镜像的仓库凭据。
506506
这是为私有仓库获取凭据最稳健和最通用的方法,但也需要 kubelet 级别的配置才能启用。
507507

508-
有关更多细节请参见[配置 kubelet 镜像凭据提供程序](/docs/tasks/administer-cluster/kubelet-credential-provider/)
508+
有关更多细节请参见[配置 kubelet 镜像凭据提供程序](/zh-cn/docs/tasks/administer-cluster/kubelet-credential-provider/)
509509

510510
<!--
511511
### Interpretation of config.json {#config-json}

content/zh-cn/docs/concepts/scheduling-eviction/node-pressure-eviction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Node-pressure eviction is not the same as
2929
当这些资源中的一个或者多个达到特定的消耗水平,
3030
kubelet 可以主动地使节点上一个或者多个 Pod 失效,以回收资源防止饥饿。
3131

32-
在节点压力驱逐期间,kubelet 将所选 Pod 的[阶段](/docs/concepts/workloads/pods/pod-lifecycle/#pod-phase)
32+
在节点压力驱逐期间,kubelet 将所选 Pod 的[阶段](/zh-cn/docs/concepts/workloads/pods/pod-lifecycle/#pod-phase)
3333
设置为 `Failed`。这将终止 Pod。
3434

3535
节点压力驱逐不同于 [API 发起的驱逐](/zh-cn/docs/concepts/scheduling-eviction/api-eviction/)
@@ -390,7 +390,7 @@ kubelet 根据下表将驱逐信号映射为节点状况:
390390
| `DiskPressure` | `nodefs.available``nodefs.inodesFree``imagefs.available``imagefs.inodesFree` | 节点的根文件系统或镜像文件系统上的可用磁盘空间和 inode 已满足驱逐条件 |
391391
| `PIDPressure` | `pid.available` | (Linux) 节点上的可用进程标识符已低于驱逐条件 |
392392

393-
控制平面还将这些节点状况[映射]((/zh-cn/docs/concepts/scheduling-eviction/taint-and-toleration/#taint-nodes-by-condition))为其污点。
393+
控制平面还将这些节点状况[映射](/zh-cn/docs/concepts/scheduling-eviction/taint-and-toleration/#taint-nodes-by-condition)为其污点。
394394

395395
kubelet 根据配置的 `--node-status-update-frequency` 更新节点条件,默认为 `10s`
396396

content/zh-cn/docs/concepts/services-networking/service-traffic-policy.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,6 @@ kube-proxy 基于 `spec.internalTrafficPolicy` 的设置来过滤路由的目标
110110
* Read about [Service External Traffic Policy](/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip)
111111
* Follow the [Connecting Applications with Services](/docs/tutorials/services/connect-applications-service/) tutorial
112112
-->
113-
* 请阅读[拓扑感知路由](/zh-cn/docs/concepts/services-networking/topology-aware-hints)
113+
* 请阅读[拓扑感知路由](/zh-cn/docs/concepts/services-networking/topology-aware-routing/)
114114
* 请阅读 [Service 的外部流量策略](/zh-cn/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip)
115-
* 遵循[使用 Service 连接到应用](/zh-cn/docs/tutorials/services/connect-applications-service/)教程
115+
* 遵循[使用 Service 连接到应用](/zh-cn/docs/tutorials/services/connect-applications-service/)教程

content/zh-cn/docs/contribute/new-content/blogs-case-studies.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ To submit a blog post, follow these steps:
100100
-->
101101
要提交博文,你可以遵从以下步骤:
102102

103-
1. 如果你还未签署 CLA,请先[签署 CLA](https://kubernetes.io/docs/contribute/start/#sign-the-cla)
103+
1. 如果你还未签署 CLA,请先[签署 CLA](/zh-cn/docs/contribute/start/#sign-the-cla)
104104
2. 查阅[网站仓库](https://github.com/kubernetes/website/tree/master/content/en/blog/_posts)中现有博文的 Markdown 格式。
105105
3. 在你所选的文本编辑器中撰写你的博文。
106106
4. 在第 2 步的同一链接上,点击 **Create new file** 按钮。

content/zh-cn/docs/reference/access-authn-authz/extensible-admission-controllers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ request:
605605

606606
# dryRun 表示 API 请求正在以 `dryrun` 模式运行,并且将不会保留。
607607
# 带有副作用的 Webhook 应该避免在 dryRun 为 true 时激活这些副作用。
608-
# 有关更多详细信息,请参见 http://k8s.io/docs/reference/using-api/api-concepts/#make-a-dry-run-request
608+
# 有关更多详细信息,请参见 http://k8s.io/zh-cn/docs/reference/using-api/api-concepts/#make-a-dry-run-request
609609
dryRun: False
610610
```
611611
@@ -1173,7 +1173,7 @@ webhook to be called.
11731173
如果你需要细粒度地过滤请求,你可以为 Webhook 定义**匹配条件**。
11741174
如果你发现匹配规则、`objectSelectors` 和 `namespaceSelectors` 仍然不能提供你想要的何时进行 HTTP
11751175
调用的过滤条件,那么添加这些条件会很有用。
1176-
匹配条件是 [CEL 表达式](/docs/reference/using-api/cel/)。
1176+
匹配条件是 [CEL 表达式](/zh-cn/docs/reference/using-api/cel/)。
11771177
所有匹配条件都必须为 true 才能调用 Webhook。
11781178

11791179
<!--

content/zh-cn/docs/reference/access-authn-authz/rbac.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ workload to function correctly are applied.
598598
在 resources 和 verbs 条目中使用通配符会为敏感资源授予过多的访问权限。
599599
例如,如果添加了新的资源类型、新的子资源或新的自定义动词,
600600
通配符条目会自动授予访问权限,用户可能不希望出现这种情况。
601-
应该执行[最小特权原则](zh-cn/docs/concepts/security/rbac-good-practices/#least-privilege),
601+
应该执行[最小特权原则](/zh-cn/docs/concepts/security/rbac-good-practices/#least-privilege),
602602
使用具体的 resources 和 verbs 确保仅赋予工作负载正常运行所需的权限。
603603
{{< /caution >}}
604604

content/zh-cn/docs/reference/command-line-tools-reference/feature-gates.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ For a reference to old feature gates that are removed, please refer to
9797
-->
9898
### Alpha 和 Beta 状态的特性门控 {#feature-gates-for-alpha-or-beta-features}
9999

100-
{{< table caption="处于 Alpha 或 Beta 状态的特性门控" >}}
100+
{{< table caption="处于 Alpha 或 Beta 状态的特性门控" sortable="true" >}}
101101

102102
<!--
103103
| Feature | Default | Stage | Since | Until |
@@ -275,7 +275,7 @@ For a reference to old feature gates that are removed, please refer to
275275
-->
276276
### 已毕业和已废弃的特性门控 {#feature-gates-for-graduated-or-deprecated-features}
277277

278-
{{< table caption="已毕业或不推荐使用的特性门控" >}}
278+
{{< table caption="已毕业或不推荐使用的特性门控" sortable="true" >}}
279279

280280
<!--
281281
| Feature | Default | Stage | Since | Until |
@@ -421,7 +421,7 @@ A *Beta* feature means:
421421
**Beta** 特性代表:
422422

423423
<!--
424-
* Enabled by default.
424+
* Usually enabled by default. Beta API groups are [disabled by default](https://github.com/kubernetes/enhancements/tree/master/keps/sig-architecture/3136-beta-apis-off-by-default).
425425
* The feature is well tested. Enabling the feature is considered safe.
426426
* Support for the overall feature will not be dropped, though details may change.
427427
* The schema and/or semantics of objects may change in incompatible ways in a
@@ -433,7 +433,7 @@ A *Beta* feature means:
433433
incompatible changes in subsequent releases. If you have multiple clusters
434434
that can be upgraded independently, you may be able to relax this restriction.
435435
-->
436-
* 默认启用
436+
* 通常默认启用。Beta API 组[默认是被禁用的](https://github.com/kubernetes/enhancements/tree/master/keps/sig-architecture/3136-beta-apis-off-by-default)
437437
* 该特性已经经过良好测试。启用该特性是安全的。
438438
* 尽管详细信息可能会更改,但不会放弃对整体特性的支持。
439439
* 对象的架构或语义可能会在随后的 Beta 或稳定版本中以不兼容的方式更改。
@@ -720,8 +720,6 @@ Each feature gate is designed for enabling/disabling a specific feature:
720720
- `DevicePluginCDIDevices`: Enable support to CDI device IDs in the
721721
[Device Plugin](/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/) API.
722722
-->
723-
- `DevicePluginCDIDevices`: Enable support to CDI device IDs in the
724-
[Device Plugin](/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/) API.
725723
- `DefaultHostNetworkHostPortsInPodTemplates`:更改何时分配 `PodSpec.containers[*].ports[*].hostPort` 的默认值。
726724
默认仅在 Pod 中设置默认值。启用此特性意味着即使在嵌套的 PodSpec(例如 Deployment 中)中也会分配默认值,
727725
这是以前的默认行为。
@@ -962,7 +960,7 @@ Each feature gate is designed for enabling/disabling a specific feature:
962960
- `KMSv2`:启用 KMS v2 API 以实现静态加密。
963961
详情参见[使用 KMS 驱动进行数据加密](/zh-cn/docs/tasks/administer-cluster/kms-provider)
964962
- `KMSv2KDF`:启用 KMS v2 以生成一次性数据加密密钥。
965-
详情参见[使用 KMS 提供程序进行数据加密](/docs/tasks/administer-cluster/kms-provider)
963+
详情参见[使用 KMS 提供程序进行数据加密](/zh-cn/docs/tasks/administer-cluster/kms-provider)
966964
如果 `KMSv2` 特性门控在你的集群未被启用 ,则 `KMSv2KDF` 特性门控的值不会产生任何影响。
967965
- `KubeProxyDrainingTerminatingNodes`:为 `externalTrafficPolicy: Cluster` 服务实现正终止节点的连接排空。
968966
<!--
@@ -1332,7 +1330,7 @@ Each feature gate is designed for enabling/disabling a specific feature:
13321330
This feature gate will never graduate to stable.
13331331
-->
13341332
- `TopologyAwareHints`: 在 EndpointSlices 中启用基于拓扑提示的拓扑感知路由。
1335-
更多详细信息可参见[拓扑感知提示](/zh-cn/docs/concepts/services-networking/topology-aware-hints/)
1333+
更多详细信息可参见[拓扑感知路由](/zh-cn/docs/concepts/services-networking/topology-aware-routing/)
13361334
- `TopologyManager`:启用一种机制来协调 Kubernetes 不同组件的细粒度硬件资源分配。
13371335
详见[控制节点上的拓扑管理策略](/zh-cn/docs/tasks/administer-cluster/topology-manager/)
13381336
- `TopologyManagerPolicyAlphaOptions`:允许微调拓扑管理器策略的实验性的、Alpha 质量的选项。
@@ -1351,7 +1349,7 @@ Each feature gate is designed for enabling/disabling a specific feature:
13511349
-->
13521350
- `TopologyManagerPolicyOptions`:允许微调拓扑管理器策略。
13531351
- `UnknownVersionInteroperabilityProxy`:存在多个不同版本的 kube-apiserver 时将资源请求代理到正确的对等 kube-apiserver。
1354-
详细信息请参阅[混合版本代理](/docs/concepts/architecture/mixed-version-proxy/)
1352+
详细信息请参阅[混合版本代理](/zh-cn/docs/concepts/architecture/mixed-version-proxy/)
13551353
- `UserNamespacesSupport`:为 Pod 启用用户名字空间支持。
13561354
在 Kubernetes v1.28 之前,此特性门控被命名为 `UserNamespacesStatelessPodsSupport`
13571355
<!--

content/zh-cn/docs/reference/labels-annotations-taints/_index.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -501,8 +501,9 @@ When a StatefulSet controller creates a Pod for the StatefulSet, it sets this la
501501
The value of the label is the ordinal index of the pod being created.
502502
503503
See [Pod Index Label](/docs/concepts/workloads/controllers/statefulset/#pod-index-label)
504-
in the StatefulSet topic for more details. Note the [PodIndexLabel](content/en/docs/reference/command-line-tools-reference/feature-gates.md) feature gate must be enabled
505-
for this label to be added to pods.
504+
in the StatefulSet topic for more details.
505+
Note the [PodIndexLabel](/docs/reference/command-line-tools-reference/feature-gates/)
506+
feature gate must be enabled for this label to be added to pods.
506507
-->
507508
类别:标签
508509

@@ -515,8 +516,8 @@ for this label to be added to pods.
515516

516517
更多细节参阅 StatefulSet 主题中的
517518
[Pod 索引标签](/zh-cn/docs/concepts/workloads/controllers/statefulset/#pod-index-label)
518-
请注意,[PodIndexLabel](/zh-cn/docs/reference/command-line-tools-reference/feature-gates.md) 特性门控必须被启用,
519-
才能将此标签添加到 Pod 上。
519+
请注意,[PodIndexLabel](/zh-cn/docs/reference/command-line-tools-reference/feature-gates/)
520+
特性门控必须被启用,才能将此标签添加到 Pod 上。
520521

521522
<!--
522523
### cluster-autoscaler.kubernetes.io/safe-to-evict
@@ -2113,7 +2114,7 @@ Example: `alpha.kubernetes.io/provided-node-ip: "10.0.0.1"`
21132114
21142115
Used on: Node
21152116
2116-
The kubelet can set this annotation on a Node to denote its configured IPv4 address.
2117+
The kubelet can set this annotation on a Node to denote its configured IPv4 and/or IPv6 address.
21172118
21182119
When kubelet is started with the `--cloud-provider` flag set to any value (includes both external
21192120
and legacy in-tree cloud providers), it sets this annotation on the Node to denote an IP address
@@ -2128,7 +2129,7 @@ by the cloud-controller-manager.
21282129

21292130
用于:Node
21302131

2131-
kubelet 可以在 Node 上设置此注解来表示其配置的 IPv4 地址。
2132+
kubelet 可以在 Node 上设置此注解来表示其配置的 IPv4 与/或 IPv6 地址。
21322133

21332134
如果 kubelet 被启动时 `--cloud-provider` 标志设置为任一云驱动(包括外部云驱动和传统树内云驱动)
21342135
kubelet 会在 Node 上设置此注解以表示从命令行标志(`--node-ip`)设置的 IP 地址。
@@ -2159,11 +2160,12 @@ kube-controller-manager 中的 Job 控制器为使用 Indexed
21592160
设置此标签和注解。
21602161

21612162
<!--
2162-
Note the [PodIndexLabel](content/en/docs/reference/command-line-tools-reference/feature-gates.md) feature gate must be enabled
2163-
for this to be added as a pod **label**, otherwise it will just be an annotation.
2163+
Note the [PodIndexLabel](/docs/reference/command-line-tools-reference/feature-gates/)
2164+
feature gate must be enabled for this to be added as a pod **label**,
2165+
otherwise it will just be an annotation.
21642166
-->
2165-
请注意,[PodIndexLabel](/zh-cn/docs/reference/command-line-tools-reference/feature-gates.md) 特性门控必须被启用,
2166-
才能将其添加为 Pod 的**标签**,否则它只会用作注解。
2167+
请注意,[PodIndexLabel](/zh-cn/docs/reference/command-line-tools-reference/feature-gates/)
2168+
特性门控必须被启用,才能将其添加为 Pod 的**标签**,否则它只会用作注解。
21672169

21682170
### batch.kubernetes.io/cronjob-scheduled-timestamp
21692171

content/zh-cn/docs/reference/setup-tools/kubeadm/_index.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,20 @@ weight: 10
44
no_list: true
55
content_type: concept
66
card:
7-
name: reference
8-
weight: 40
7+
title: kubeadm 命令参考
8+
name: setup
9+
weight: 80
910
---
11+
<!--
12+
title: "Kubeadm"
13+
weight: 10
14+
no_list: true
15+
content_type: concept
16+
card:
17+
title: kubeadm command reference
18+
name: setup
19+
weight: 80
20+
-->
1021

1122
<img src="/images/kubeadm-stacked-color.png" align="right" width="150px">
1223

@@ -71,7 +82,7 @@ To install kubeadm, see the [installation guide](/docs/setup/production-environm
7182
用于恢复通过 `kubeadm init` 或者 `kubeadm join` 命令对节点进行的任何变更
7283
* [kubeadm certs](/zh-cn/docs/reference/setup-tools/kubeadm/kubeadm-certs)
7384
用于管理 Kubernetes 证书
74-
* [kubeadm kubeconfig](/docs/reference/setup-tools/kubeadm/kubeadm-kubeconfig)
85+
* [kubeadm kubeconfig](/zh-cn/docs/reference/setup-tools/kubeadm/kubeadm-kubeconfig)
7586
用于管理 kubeconfig 文件
7687
* [kubeadm version](/zh-cn/docs/reference/setup-tools/kubeadm/kubeadm-version)
7788
用于打印 kubeadm 的版本信息

content/zh-cn/docs/tasks/configure-pod-container/assign-memory-resource.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -555,4 +555,4 @@ kubectl delete namespace mem-example
555555
* [为命名空间配置内存和 CPU 配额](/zh-cn/docs/tasks/administer-cluster/manage-resources/quota-memory-cpu-namespace/)
556556
* [配置命名空间下 Pod 总数](/zh-cn/docs/tasks/administer-cluster/manage-resources/quota-pod-namespace/)
557557
* [配置 API 对象配额](/zh-cn/docs/tasks/administer-cluster/quota-api-object/)
558-
* [调整分配给容器的 CPU 和内存资源的大小](/docs/tasks/configure-pod-container/resize-container-resources/)
558+
* [调整分配给容器的 CPU 和内存资源的大小](/zh-cn/docs/tasks/configure-pod-container/resize-container-resources/)

content/zh-cn/docs/tasks/configure-pod-container/resize-container-resources.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ kubectl delete namespace qos-example
352352

353353
* [为容器和 Pod 分配内存资源](/zh-cn/docs/tasks/configure-pod-container/assign-memory-resource/)
354354

355-
* [为容器和 Pod 分配 CPU 资源](/docs/tasks/configure-pod-container/assign-cpu-resource/)
355+
* [为容器和 Pod 分配 CPU 资源](/zh-cn/docs/tasks/configure-pod-container/assign-cpu-resource/)
356356

357357
<!--
358358
### For cluster administrators

content/zh-cn/docs/tasks/configure-pod-container/static-pod.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ f427638871c35 docker.io/library/nginx@sha256:... 19 seconds ago Running
477477
-->
478478
* [为控制面组件生成静态 Pod 清单](/zh-cn/docs/reference/setup-tools/kubeadm/implementation-details/#generate-static-pod-manifests-for-control-plane-components)
479479
* [为本地 etcd 生成静态 Pod 清单](/zh-cn/docs/reference/setup-tools/kubeadm/implementation-details/#generate-static-pod-manifest-for-local-etcd)
480-
* [使用 `crictl` 对 Kubernetes 节点进行调试](/docs/tasks/debug/debug-cluster/crictl/)
480+
* [使用 `crictl` 对 Kubernetes 节点进行调试](/zh-cn/docs/tasks/debug/debug-cluster/crictl/)
481481
* 更多细节请参阅 [`crictl`](https://github.com/kubernetes-sigs/cri-tools)
482482
* [从 `docker` CLI 命令映射到 `crictl`](/zh-cn/docs/reference/tools/map-crictl-dockercli/)
483483
* [将 etcd 实例设置为由 kubelet 管理的静态 Pod](/zh-cn/docs/setup/production-environment/tools/kubeadm/setup-ha-etcd-with-kubeadm/)

content/zh-cn/docs/tasks/debug/debug-cluster/audit.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -451,5 +451,6 @@ By default truncate is disabled in both `webhook` and `log`, a cluster administr
451451
-->
452452
* 进一步了解 [Mutating webhook 审计注解](/zh-cn/docs/reference/access-authn-authz/extensible-admission-controllers/#mutating-webhook-auditing-annotations)。
453453
* 通过阅读审计配置参考,进一步了解
454-
[`Event`](/docs/reference/config-api/apiserver-audit.v1/#audit-k8s-io-v1-Event)
455-
和 [`Policy`](/docs/reference/config-api/apiserver-audit.v1/#audit-k8s-io-v1-Policy) 资源的信息。
454+
[`Event`](/zh-cn/docs/reference/config-api/apiserver-audit.v1/#audit-k8s-io-v1-Event)
455+
和 [`Policy`](/zh-cn/docs/reference/config-api/apiserver-audit.v1/#audit-k8s-io-v1-Policy) 资源的信息。
456+

0 commit comments

Comments
 (0)