Skip to content

Commit 9b1a0d7

Browse files
authored
Merge pull request #44577 from 1000Delta/zh_feature-gates_s3
[zh] Localize feature-gates/s*.md part 3
2 parents 77367b7 + 1a4bda3 commit 9b1a0d7

20 files changed

+521
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
# Removed from Kubernetes
3+
title: SetHostnameAsFQDN
4+
content_type: feature_gate
5+
6+
_build:
7+
list: never
8+
render: false
9+
10+
stages:
11+
- stage: alpha
12+
defaultValue: false
13+
fromVersion: "1.19"
14+
toVersion: "1.19"
15+
- stage: beta
16+
defaultValue: true
17+
fromVersion: "1.20"
18+
toVersion: "1.21"
19+
- stage: stable
20+
defaultValue: true
21+
fromVersion: "1.22"
22+
toVersion: "1.24"
23+
24+
removed: true
25+
---
26+
<!--
27+
Enable the ability of setting Fully Qualified Domain Name(FQDN) as the
28+
hostname of a pod. See
29+
[Pod's `setHostnameAsFQDN` field](/docs/concepts/services-networking/dns-pod-service/#pod-sethostnameasfqdn-field).
30+
-->
31+
启用将全限定域名(FQDN)设置为 Pod 主机名的功能。
32+
请参见 [Pod 的 `setHostnameAsFQDN` 字段](/zh-cn/docs/concepts/services-networking/dns-pod-service/#pod-sethostnameasfqdn-field)
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: SidecarContainers
3+
content_type: feature_gate
4+
_build:
5+
list: never
6+
render: false
7+
8+
stages:
9+
- stage: alpha
10+
defaultValue: false
11+
fromVersion: "1.28"
12+
toVersion: "1.28"
13+
- stage: beta
14+
defaultValue: true
15+
fromVersion: "1.29"
16+
---
17+
<!--
18+
Allow setting the `restartPolicy` of an init container to
19+
`Always` so that the container becomes a sidecar container (restartable init containers).
20+
See [Sidecar containers and restartPolicy](/docs/concepts/workloads/pods/sidecar-containers/)
21+
for more details.
22+
-->
23+
允许将 Init 容器的 `restartPolicy` 设置为 `Always`
24+
以便该容器成为一个边车容器(可重启的 Init 容器)。
25+
详情参见[边车容器和 restartPolicy](/zh-cn/docs/concepts/workloads/pods/sidecar-containers/)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: SizeMemoryBackedVolumes
3+
content_type: feature_gate
4+
_build:
5+
list: never
6+
render: false
7+
8+
stages:
9+
- stage: alpha
10+
defaultValue: false
11+
fromVersion: "1.20"
12+
toVersion: "1.21"
13+
- stage: beta
14+
defaultValue: true
15+
fromVersion: "1.22"
16+
---
17+
<!--
18+
Enable kubelets to determine the size limit for
19+
memory-backed volumes (mainly `emptyDir` volumes).
20+
-->
21+
允许 kubelet 检查基于内存制备的卷的尺寸约束(目前主要针对 `emptyDir` 卷)。
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: SkipReadOnlyValidationGCE
3+
content_type: feature_gate
4+
_build:
5+
list: never
6+
render: false
7+
8+
stages:
9+
- stage: alpha
10+
defaultValue: false
11+
fromVersion: "1.28"
12+
toVersion: "1.28"
13+
- stage: deprecated
14+
defaultValue: true
15+
fromVersion: "1.29"
16+
---
17+
<!--
18+
Skip validation for GCE, will enable in the
19+
next version.
20+
-->
21+
跳过对 GCE 的验证,将在下个版本中启用。
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: StableLoadBalancerNodeSet
3+
content_type: feature_gate
4+
_build:
5+
list: never
6+
render: false
7+
8+
stages:
9+
- stage: beta
10+
defaultValue: true
11+
fromVersion: "1.27"
12+
---
13+
<!--
14+
Enables less load balancer re-configurations by
15+
the service controller (KCCM) as an effect of changing node state.
16+
-->
17+
允许服务控制器(KCCM)减少根据节点状态变化来对负载均衡器作重新配置的操作。
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
# Removed from Kubernetes
3+
title: StartupProbe
4+
content_type: feature_gate
5+
6+
_build:
7+
list: never
8+
render: false
9+
10+
stages:
11+
- stage: alpha
12+
defaultValue: false
13+
fromVersion: "1.16"
14+
toVersion: "1.17"
15+
- stage: beta
16+
defaultValue: true
17+
fromVersion: "1.18"
18+
toVersion: "1.19"
19+
- stage: stable
20+
defaultValue: true
21+
fromVersion: "1.20"
22+
toVersion: "1.23"
23+
24+
removed: true
25+
---
26+
<!--
27+
Enable the [startup](/docs/concepts/workloads/pods/pod-lifecycle/#when-should-you-use-a-startup-probe)
28+
probe in the kubelet.
29+
-->
30+
在 kubelet 中启用[启动探针](/zh-cn/docs/concepts/workloads/pods/pod-lifecycle/#when-should-you-use-a-startup-probe)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: StatefulSetAutoDeletePVC
3+
content_type: feature_gate
4+
5+
_build:
6+
list: never
7+
render: false
8+
9+
stages:
10+
- stage: alpha
11+
defaultValue: false
12+
fromVersion: "1.23"
13+
toVersion: "1.26"
14+
- stage: beta
15+
defaultValue: false
16+
fromVersion: "1.27"
17+
---
18+
<!--
19+
Allows the use of the optional `.spec.persistentVolumeClaimRetentionPolicy` field,
20+
providing control over the deletion of PVCs in a StatefulSet's lifecycle.
21+
See
22+
[PersistentVolumeClaim retention](/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention)
23+
for more details.
24+
-->
25+
允许使用可选字段 `.spec.persistentVolumeClaimRetentionPolicy`
26+
以便根据 StatefulSet 的生命周期来控制 PVC 的删除。
27+
详情参见 [PersistentVolumeClaim 保留](/zh-cn/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention)
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
# Removed from Kubernetes
3+
title: StatefulSetMinReadySeconds
4+
content_type: feature_gate
5+
6+
_build:
7+
list: never
8+
render: false
9+
10+
stages:
11+
- stage: alpha
12+
defaultValue: false
13+
fromVersion: "1.22"
14+
toVersion: "1.22"
15+
- stage: beta
16+
defaultValue: true
17+
fromVersion: "1.23"
18+
toVersion: "1.24"
19+
- stage: stable
20+
defaultValue: true
21+
fromVersion: "1.25"
22+
toVersion: "1.26"
23+
24+
removed: true
25+
---
26+
<!--
27+
Allows `minReadySeconds` to be respected by
28+
the StatefulSet controller.
29+
-->
30+
允许 StatefulSet 控制器遵守 `minReadySeconds`
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: StatefulSetStartOrdinal
3+
content_type: feature_gate
4+
_build:
5+
list: never
6+
render: false
7+
8+
stages:
9+
- stage: alpha
10+
defaultValue: false
11+
fromVersion: "1.26"
12+
toVersion: "1.26"
13+
- stage: beta
14+
defaultValue: true
15+
fromVersion: "1.27"
16+
---
17+
<!--
18+
Allow configuration of the start ordinal in a
19+
StatefulSet. See
20+
[Start ordinal](/docs/concepts/workloads/controllers/statefulset/#start-ordinal)
21+
for more details.
22+
-->
23+
允许在 StatefulSet 中配置起始序号。
24+
详情参见[起始序号](/zh-cn/docs/concepts/workloads/controllers/statefulset/#start-ordinal)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
# Removed from Kubernetes
3+
title: StorageObjectInUseProtection
4+
content_type: feature_gate
5+
6+
_build:
7+
list: never
8+
render: false
9+
10+
stages:
11+
- stage: beta
12+
defaultValue: true
13+
fromVersion: "1.10"
14+
toVersion: "1.10"
15+
- stage: stable
16+
defaultValue: true
17+
fromVersion: "1.11"
18+
toVersion: "1.24"
19+
20+
removed: true
21+
---
22+
<!--
23+
Postpone the deletion of PersistentVolume or
24+
PersistentVolumeClaim objects if they are still being used.
25+
-->
26+
如果仍在使用 PersistentVolume 或 PersistentVolumeClaim 对象,
27+
则将其删除操作推迟。

0 commit comments

Comments
 (0)