Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/zh-cn/docs/concepts/services-networking/gateway.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ Gateway API is the successor to the [Ingress](/docs/concepts/services-networking
However, it does not include the Ingress kind. As a result, a one-time conversion from your existing
Ingress resources to Gateway API resources is necessary.

Refer to the [ingress migration](https://gateway-api.sigs.k8s.io/guides/migrating-from-ingress/#migrating-from-ingress)
Refer to the [ingress migration](https://gateway-api.sigs.k8s.io/guides/getting-started/migrating-from-ingress)
guide for details on migrating Ingress resources to Gateway API resources.
-->
## 从 Ingress 迁移 {#migrating-from-ingress}
Expand All @@ -425,7 +425,7 @@ Gateway API 是 [Ingress](/zh-cn/docs/concepts/services-networking/ingress/) API
但是其中不包括 Ingress 类型。因此,需要将现有 Ingress 资源一次性转换为 Gateway API 资源。

有关将 Ingress 资源迁移到 Gateway API 资源的详细信息,请参阅
[Ingress 迁移](https://gateway-api.sigs.k8s.io/guides/migrating-from-ingress/#migrating-from-ingress)指南。
[Ingress 迁移](https://gateway-api.sigs.k8s.io/guides/getting-started/migrating-from-ingress)指南。

## {{% heading "whatsnext" %}}

Expand Down
4 changes: 2 additions & 2 deletions content/zh-cn/docs/reference/kubectl/conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ For `kubectl run` to satisfy infrastructure as code:
若希望 `kubectl run` 满足基础设施即代码的要求:

<!--
* Tag the image with a version-specific tag and don't move that tag to a new version. For example, use `:v1234`, `v1.2.3`, `r03062016-1-4`, rather than `:latest` (For more information, see [Best Practices for Configuration](/docs/concepts/configuration/overview/#container-images)).
* Tag the image with a version-specific tag and don't move that tag to a new version. For example, use `:v1234`, `v1.2.3`, `r03062016-1-4`, rather than `:latest` (For more information, see [Kubernetes Configuration Good Practices](/blog/2025/11/25/configuration-good-practices/)).
* Check in the script for an image that is heavily parameterized.
* Switch to configuration files checked into source control for features that are needed, but not expressible via `kubectl run` flags.
-->

* 使用特定版本的标签标记镜像,不要将该标签改为新版本。例如使用 `:v1234`、`v1.2.3`、`r03062016-1-4`,
而不是 `:latest`(有关详细信息,请参阅[配置的最佳实践](/zh-cn/docs/concepts/configuration/overview/#container-images))。
而不是 `:latest`(有关详细信息,请参阅[Kubernetes 配置最佳实践](/zh-cn/blog/2025/11/25/configuration-good-practices/))。
* 使用基于版本控制的脚本来运行包含大量参数的镜像。
* 对于无法通过 `kubectl run` 参数来表示的功能特性,使用基于源码控制的配置文件,以记录要使用的功能特性。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ TokenRequestSpec 包含客户端提供的令牌请求参数。

*Atomic: will be replaced during a merge*

Audiences are the intended audiences of the token. A recipient of a token must identify themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.
Audiences are the intendend audiences of the token. A recipient of a token must identify themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.
-->
- **audiences** ([]string),必需

Expand Down