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 docs in command-line-tools-reference/feature-gates #46044

Merged
merged 1 commit into from
Apr 29, 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,17 @@
---
title: AllowServiceLBStatusOnNonLB
content_type: feature_gate
_build:
list: never
render: false

stages:
- stage: deprecated
defaultValue: false
fromVersion: "1.29"
---

<!--
Enables `.status.ingress.loadBalancer` to be set on Services of types other than `LoadBalancer`.
-->
允许对类型为 `LoadBalancer` 以外的 Service 设置 `.status.ingress.loadBalancer`。
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: JobManagedBy
content_type: feature_gate

_build:
list: never
render: false

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

<!--
Allows to delegate reconciliation of a Job object to an external controller.
-->
允许将 Job 对象的调和委托给外部控制器。
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: JobSuccessPolicy
content_type: feature_gate

_build:
list: never
render: false

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

<!--
Allow users to specify when a Job can be declared as succeeded based on the set of succeeded pods.
-->
允许用户基于一组成功的 Pod 来声明这组 Pod 所属的 Job 为成功。
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: KubeletPodResourcesDynamicResources
content_type: feature_gate
_build:
list: never
render: false

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

<!--
Extend the kubelet's pod resources gRPC endpoint to
to include resources allocated in `ResourceClaims` via `DynamicResourceAllocation` API.
See [resource allocation reporting](/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/#monitoring-device-plugin-resources) for more details.
with information about the allocatable resources, enabling clients to properly
track the free compute resources on a node.
-->
扩展 kubelet 的 Pod 资源 gRPC 端点,通过 `DynamicResourceAllocation` API 把已分配的资源算入 `ResourceClaims` 中。
有关更多细节,参见[资源分配报告](/zh-cn/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/#monitoring-device-plugin-resources)。
使用可分配资源的信息,使客户端能够正确跟踪节点上的空闲计算资源。
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: NameGenerationRetries
content_type: feature_gate

_build:
list: never
render: false

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

<!--
Enables retrying of object creation when the
{{< glossary_tooltip text="API server" term_id="kube-apiserver" >}}
is expected to generate a [name](/docs/concepts/overview/working-with-objects/names/#names).
When this feature is enabled, requests using `generateName` are retried automatically in case the
control plane detects a name conflict with an existing object, up to a limit of 8 total attempts.
-->
当 {{< glossary_tooltip text="API 服务器" term_id="kube-apiserver" >}}要生成[名称](/zh-cn/docs/concepts/overview/working-with-objects/names/#names)时,
允许重试对象创建。当此特性被启用时,如果控制平面检测到与某个现有对象存在名称冲突,
则使用 `generateName` 的请求将被自动重试,最多重试 8 次。