Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[zh] Add 5 more feature gates #49211

Merged
merged 1 commit into from
Dec 30, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: ComponentFlagz
content_type: feature_gate
_build:
list: never
render: false

stages:
- stage: alpha
defaultValue: false
fromVersion: "1.32"
---

<!--
Enables the component's flagz endpoint.
See [zpages](/docs/reference/instrumentation/zpages/) for more information.
-->
启用组件的 flagz 端点。
更多细节参见 [zpages](/zh-cn/docs/reference/instrumentation/zpages/)。
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: ComponentStatusz
content_type: feature_gate
_build:
list: never
render: false

stages:
- stage: alpha
defaultValue: false
fromVersion: "1.32"
---

<!--
Enables the component's statusz endpoint.
See [zpages](/docs/reference/instrumentation/zpages/) for more information.
-->
启用组件的 statusz 端点。
更多细节参见 [zpages](/zh-cn/docs/reference/instrumentation/zpages/)。
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: PodLevelResources
content_type: feature_gate
_build:
list: never
render: false

stages:
- stage: alpha
defaultValue: false
fromVersion: "1.32"
---

<!--
Enable _Pod level resources_: the ability to specify resource requests and limits
at the Pod level, rather than only for specific containers.
-->
启用 **Pod 级别资源**:能够在 Pod 级别指定资源请求和限制,而不仅仅是针对特定的容器。
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: SchedulerAsyncPreemption
content_type: feature_gate
_build:
list: never
render: false

stages:
- stage: alpha
defaultValue: false
fromVersion: "1.32"
---

<!--
Enable running some expensive operations within the scheduler, associated with
[preemption](/docs/concepts/scheduling-eviction/pod-priority-preemption/), asynchronously.
Asynchronous processing of preemption improves overall Pod scheduling latency.
-->
允许以异步方式在调度器内运行一些与[抢占](/zh-cn/docs/concepts/scheduling-eviction/pod-priority-preemption/)关联的高开销操作。
异步处理抢占可以降低整体 Pod 调度的延迟。
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: WatchListClient
content_type: feature_gate
_build:
list: never
render: false

stages:
- stage: beta
defaultValue: false
fromVersion: "1.30"
---

<!--
Allows an API client to request a stream of data rather than fetching a full list.
This functionality is available in `client-go` and requires the
[WatchList](/docs/reference/command-line-tools-reference/feature-gates/)
feature to be enabled on the server.
If the `WatchList` is not supported on the server, the client will seamlessly fall back to a standard list request.
-->
允许 API 客户端请求数据流,而不是获取完整的列表。
此功能可以在 `client-go` 中使用,需要在服务器上启用
[WatchList](/zh-cn/docs/reference/command-line-tools-reference/feature-gates/)
特性。如果服务器不支持 `WatchList`,客户端将自动回退为标准的 list 请求。