Skip to content

Commit 0693d2b

Browse files
authored
[zh] Update custom-resources.md (#30408)
* Update custom-resources.md * Update custom-resources.md
1 parent 5016272 commit 0693d2b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

content/zh/docs/concepts/extend-kubernetes/api-extension/custom-resources.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,10 @@ CRD 使得你不必编写自己的 API 服务器来处理定制资源,不过
316316
Usually, each resource in the Kubernetes API requires code that handles REST requests and manages persistent storage of objects. The main Kubernetes API server handles built-in resources like *pods* and *services*, and can also generically handle custom resources through [CRDs](#customresourcedefinitions).
317317
318318
The [aggregation layer](/docs/concepts/extend-kubernetes/api-extension/apiserver-aggregation/) allows you to provide specialized
319-
implementations for your custom resources by writing and deploying your own standalone API server.
320-
The main API server delegates requests to you for the custom resources that you handle,
319+
implementations for your custom resources by writing and deploying your own API server.
320+
The main API server delegates requests to your API server for the custom resources that you handle,
321321
making them available to all of its clients.
322+
322323
-->
323324
## API 服务器聚合 {#api-server-aggregation}
324325

@@ -327,9 +328,9 @@ Kubernetes API 主服务器能够处理诸如 *pods* 和 *services* 这些内置
327328
按通用的方式通过 [CRD](#customresourcedefinitions) 来处理定制资源。
328329

329330
[聚合层(Aggregation Layer)](/zh/docs/concepts/extend-kubernetes/api-extension/apiserver-aggregation/)
330-
使得你可以通过编写和部署你自己的独立的 API 服务器来为定制资源提供特殊的实现。
331-
主 API 服务器将针对你要处理的定制资源的请求全部委托给你来处理,同时将这些资源
332-
提供给其所有客户
331+
使得你可以通过编写和部署你自己的 API 服务器来为定制资源提供特殊的实现。
332+
主 API 服务器将针对你要处理的定制资源的请求全部委托给你自己的 API 服务器来处理,同时将这些资源
333+
提供给其所有客户端
333334

334335
<!--
335336
## Choosing a method for adding custom resources

0 commit comments

Comments
 (0)