Skip to content

Commit 0a47135

Browse files
authored
Merge pull request #24773 from tengqm/fix-24721
Fix typo in Daemonset
2 parents 1082d12 + 91d6aa7 commit 0a47135

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

content/zh/docs/concepts/workloads/controllers/daemonset.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ You can describe a DaemonSet in a YAML file. For example, the `daemonset.yaml` f
6565
<!--
6666
Create a DaemonSet based on the YAML file:
6767
-->
68-
基于 YAML 文件创建 DaemonSet:
68+
基于 YAML 文件创建 DaemonSet
6969

7070
```
7171
kubectl apply -f https://k8s.io/examples/controllers/daemonset.yaml
@@ -199,15 +199,19 @@ If you do not specify either, then the DaemonSet controller will create Pods on
199199
-->
200200
### 仅在某些节点上运行 Pod
201201

202-
如果指定了 `.spec.template.spec.nodeSelector`,DaemonSet Controller 将在能够与 [Node Selector](/zh/docs/concepts/scheduling-eviction/assign-pod-node/) 匹配的节点上创建 Pod。类似这种情况,可以指定 `.spec.template.spec.affinity`,然后 DaemonSet Controller 将在能够与 [node Affinity](/zh/docs/concepts/scheduling-eviction/assign-pod-node/) 匹配的节点上创建 Pod。
202+
如果指定了 `.spec.template.spec.nodeSelector`,DaemonSet 控制器将在能够与
203+
[Node 选择算符](/zh/docs/concepts/scheduling-eviction/assign-pod-node/) 匹配的节点上创建 Pod。
204+
类似这种情况,可以指定 `.spec.template.spec.affinity`,之后 DaemonSet 控制器
205+
将在能够与[节点亲和性](/zh/docs/concepts/scheduling-eviction/assign-pod-node/)
206+
匹配的节点上创建 Pod。
203207
如果根本就没有指定,则 DaemonSet Controller 将在所有节点上创建 Pod。
204208

205209
<!--
206210
## How Daemon Pods are Scheduled
207211
208212
### Scheduled by default scheduler
209213
-->
210-
## 如何调度 Daemon Pods
214+
## Daemon Pods 是如何被调度的
211215

212216
### 通过默认调度器调度
213217

@@ -228,7 +232,7 @@ That introduces the following issues:
228232
-->
229233
DaemonSet 确保所有符合条件的节点都运行该 Pod 的一个副本。
230234
通常,运行 Pod 的节点由 Kubernetes 调度器选择。
231-
不过,DaemonSet pods 由 DaemonSet 控制器创建和调度。这就带来了以下问题:
235+
不过,DaemonSet Pods 由 DaemonSet 控制器创建和调度。这就带来了以下问题:
232236

233237
* Pod 行为的不一致性:正常 Pod 在被创建后等待调度时处于 `Pending` 状态,
234238
DaemonSet Pods 创建后不会处于 `Pending` 状态下。这使用户感到困惑。
@@ -250,7 +254,7 @@ changes are made to the `spec.template` of the DaemonSet.
250254
默认调度器接下来将 Pod 绑定到目标主机。
251255
如果 DaemonSet Pod 的节点亲和性配置已存在,则被替换。
252256
DaemonSet 控制器仅在创建或修改 DaemonSet Pod 时执行这些操作,
253-
并且不回更改 DaemonSet 的 `spec.template`
257+
并且不会更改 DaemonSet 的 `spec.template`
254258

255259
```yaml
256260
nodeAffinity:
@@ -284,10 +288,10 @@ the related features.
284288
尽管 Daemon Pods 遵循[污点和容忍度](/zh/docs/concepts/scheduling-eviction/taint-and-toleration)
285289
规则,根据相关特性,控制器会自动将以下容忍度添加到 DaemonSet Pod:
286290

287-
| 容忍度键名 | 效果 | 版本 | 描述 |
291+
| 容忍度键名 | 效果 | 版本 | 描述 |
288292
| ---------------------------------------- | ---------- | ------- | ------------------------------------------------------------ |
289293
| `node.kubernetes.io/not-ready` | NoExecute | 1.13+ | 当出现类似网络断开的情况导致节点问题时,DaemonSet Pod 不会被逐出。 |
290-
| `node.kubernetes.io/unreachable` | NoExecute | 1.13+ | 当出现类似于网络断开的情况导致节点问题时,DaemonSet Pod 不会被逐出。 |
294+
| `node.kubernetes.io/unreachable` | NoExecute | 1.13+ | 当出现类似于网络断开的情况导致节点问题时,DaemonSet Pod 不会被逐出。 |
291295
| `node.kubernetes.io/disk-pressure` | NoSchedule | 1.8+ | |
292296
| `node.kubernetes.io/memory-pressure` | NoSchedule | 1.8+ | |
293297
| `node.kubernetes.io/unschedulable` | NoSchedule | 1.12+ | DaemonSet Pod 能够容忍默认调度器所设置的 `unschedulable` 属性. |
@@ -313,7 +317,7 @@ Some possible patterns for communicating with Pods in a DaemonSet are:
313317

314318
与 DaemonSet 中的 Pod 进行通信的几种可能模式如下:
315319

316-
- **Push**:配置 DaemonSet 中的 Pod,将更新发送到另一个服务,例如统计数据库。
320+
- **推送(Push**:配置 DaemonSet 中的 Pod,将更新发送到另一个服务,例如统计数据库。
317321
这些服务没有客户端。
318322

319323
- **NodeIP 和已知端口**:DaemonSet 中的 Pod 可以使用 `hostPort`,从而可以通过节点 IP

0 commit comments

Comments
 (0)