Skip to content

Commit fcb4d4a

Browse files
authored
Merge pull request #36777 from Michelle951/michelle001
[zh] sync stateful-set-v1.md
2 parents 28d76ff + a5e0bb5 commit fcb4d4a

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

content/zh-cn/docs/reference/kubernetes-api/workload-resources/stateful-set-v1.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ auto_generated: true
3131
StatefulSet represents a set of pods with consistent identities. Identities are defined as:
3232
- Network: A single stable DNS and hostname.
3333
- Storage: As many VolumeClaims as requested.
34+
3435
The StatefulSet guarantees that a given network identity will always map to the same storage identity.
3536
-->
3637
StatefulSet 表示一组具有一致身份的 Pod。身份定义为:
3738
- 网络:一个稳定的 DNS 和主机名。
38-
- 存储:根据要求提供尽可能多的 VolumeClaims。
39+
- 存储:根据要求提供尽可能多的 VolumeClaim。
40+
3941
StatefulSet 保证给定的网络身份将始终映射到相同的存储身份。
4042
<hr>
4143

@@ -81,7 +83,7 @@ StatefulSetSpec 是 StatefulSet 的规约。
8183
- **serviceName** (string), 必需
8284

8385
serviceName 是管理此 StatefulSet 服务的名称。
84-
该服务必须在 StatefulSet 之前即已存在,并负责该集合的网络标识。
86+
该服务必须在 StatefulSet 之前即已存在,并负责该集合的网络标识。
8587
Pod 会获得符合以下模式的 DNS/主机名: pod-specific-string.serviceName.default.svc.cluster.local。
8688
其中 “pod-specific-string” 由 StatefulSet 控制器管理。
8789

@@ -93,7 +95,7 @@ StatefulSetSpec 是 StatefulSet 的规约。
9395
- **selector** (<a href="{{< ref "../common-definitions/label-selector#LabelSelector" >}}">LabelSelector</a>), 必需
9496

9597
selector 是对 Pod 的标签查询,查询结果应该匹配副本个数。
96-
此选择算符必须与 Pod 模板中的 labels 匹配。
98+
此选择算符必须与 Pod 模板中的 label 匹配。
9799
更多信息: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
98100

99101
<!--
@@ -103,7 +105,7 @@ StatefulSetSpec 是 StatefulSet 的规约。
103105
-->
104106
- **template** (<a href="{{< ref "../workload-resources/pod-template-v1#PodTemplateSpec" >}}">PodTemplateSpec</a>), 必需
105107

106-
template 是用来描述 Pod 的对象,检测到副本不足时将创建所描述的 Pod。
108+
template 是用来描述 Pod 的对象,检测到副本不足时将创建所描述的 Pod。
107109
经由 StatefulSet 创建的每个 Pod 都将满足这个模板,但与 StatefulSet 的其余 Pod 相比,每个 Pod 具有唯一的标识。
108110

109111
<!--
@@ -136,6 +138,11 @@ StatefulSetSpec 是 StatefulSet 的规约。
136138

137139
- **updateStrategy.type** (string)
138140

141+
<!--
142+
Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.
143+
-->
144+
type 表示 StatefulSetUpdateStrategy 的类型,默认为 RollingUpdate。
145+
139146
- **updateStrategy.rollingUpdate** (RollingUpdateStatefulSetStrategy)
140147

141148
<!--
@@ -218,12 +225,11 @@ StatefulSetSpec 是 StatefulSet 的规约。
218225
- **minReadySeconds** (int32)
219226

220227
<!--
221-
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready) This is an alpha field and requires enabling StatefulSetMinReadySeconds feature gate.
228+
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
222229
-->
223230

224231
新创建的 Pod 应准备就绪(其任何容器都未崩溃)的最小秒数,以使其被视为可用。
225232
默认为 0(Pod 准备就绪后将被视为可用)。
226-
这是一个 Alpha 字段,需要启用 StatefulSetMinReadySeconds 特性门控。
227233

228234
- **persistentVolumeClaimRetentionPolicy** (StatefulSetPersistentVolumeClaimRetentionPolicy)
229235

@@ -304,10 +310,9 @@ StatefulSetStatus 表示 StatefulSet 的当前状态。
304310
- **availableReplicas** (int32)
305311

306312
<!--
307-
Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset. This is a beta field and enabled/disabled by StatefulSetMinReadySeconds feature gate.
313+
Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset.
308314
-->
309315
此 StatefulSet 所对应的可用 Pod 总数(就绪时长至少为 minReadySeconds)。
310-
这是一个 Beta 字段,由 StatefulSetMinReadySeconds 特性门控启用/禁用。
311316

312317
- **collisionCount** (int32)
313318

0 commit comments

Comments
 (0)