Skip to content

Commit 5422baf

Browse files
authored
Merge pull request #35718 from hs0210/sync-commented-en-txt
[zh-cn] resync: some file's commented English texts under docks/tasks
2 parents fbb8b36 + 4be9592 commit 5422baf

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

content/zh-cn/docs/tasks/administer-cluster/migrating-from-dockershim/migrating-telemetry-and-security-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ The `kubelet-stats` monitor was previously deprecated by the vendor, in favor of
259259
The `docker-container-stats` monitor is the one affected by dockershim removal.
260260
Do not use the `docker-container-stats` with container runtimes other than Docker Engine.
261261
262-
How to migrate from dockershim-dependant agent:
262+
How to migrate from dockershim-dependent agent:
263263
1. Remove `docker-container-stats` from the list of [configured monitors](https://github.com/signalfx/signalfx-agent/blob/main/docs/monitor-config.md).
264264
Note, keeping this monitor enabled with non-dockershim runtime will result in incorrect metrics
265265
being reported when docker is installed on node and no metrics when docker is not installed.

content/zh-cn/docs/tasks/administer-cluster/nodelocaldns.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ content_type: task
66
reviewers:
77
- bowei
88
- zihongz
9-
title: Using NodeLocal DNSCache in Kubernetes clusters
9+
title: Using NodeLocal DNSCache in Kubernetes Clusters
1010
content_type: task
1111
-->
1212

@@ -70,7 +70,7 @@ NodeLocal DNSCache 通过在集群节点上作为 DaemonSet 运行 DNS 缓存代
7070
并避免 UDP DNS 条目填满 conntrack 表。
7171

7272
<!--
73-
* Connections from local caching agent to kube-dns service can be upgraded to TCP.
73+
* Connections from the local caching agent to kube-dns service can be upgraded to TCP.
7474
TCP conntrack entries will be removed on connection close in contrast with
7575
UDP entries that have to timeout
7676
([default](https://www.kernel.org/doc/Documentation/networking/nf_conntrack-sysctl.txt)
@@ -96,7 +96,7 @@ NodeLocal DNSCache 通过在集群节点上作为 DaemonSet 运行 DNS 缓存代
9696
* 在节点级别对 DNS 请求的度量和可见性。
9797

9898
<!--
99-
* Negative caching can be re-enabled, thereby reducing number of queries to kube-dns service.
99+
* Negative caching can be re-enabled, thereby reducing the number of queries for the kube-dns service.
100100
-->
101101
* 可以重新启用负缓存,从而减少对 kube-dns 服务的查询数量。
102102

@@ -124,7 +124,7 @@ This is the path followed by DNS Queries after NodeLocal DNSCache is enabled:
124124
{{< note >}}
125125
The local listen IP address for NodeLocal DNSCache can be any address that
126126
can be guaranteed to not collide with any existing IP in your cluster.
127-
It's recommended to use an address with a local scope, per example,
127+
It's recommended to use an address with a local scope, for example,
128128
from the 'link-local' range '169.254.0.0/16' for IPv4 or from the
129129
'Unique Local Address' range in IPv6 'fd00::/8'.
130130
{{< /note >}}
@@ -149,9 +149,9 @@ This feature can be enabled using the following steps:
149149
准备一个清单,把它保存为 `nodelocaldns.yaml`
150150

151151
<!--
152-
* If using IPv6, the CoreDNS configuration file need to enclose all the IPv6 addresses
152+
* If using IPv6, the CoreDNS configuration file needs to enclose all the IPv6 addresses
153153
into square brackets if used in 'IP:Port' format.
154-
If you are using the sample manifest from the previous point, this will require to modify
154+
If you are using the sample manifest from the previous point, this will require you to modify
155155
[the configuration line L70](https://github.com/kubernetes/kubernetes/blob/b2ecd1b3a3192fbbe2b9e348e095326f51dc43dd/cluster/addons/dns/nodelocaldns/nodelocaldns.yaml#L70)
156156
like this: "`health [__PILLAR__LOCAL__DNS__]:8080`"
157157
-->
@@ -193,7 +193,7 @@ This feature can be enabled using the following steps:
193193
`__PILLAR__CLUSTER__DNS__` and `__PILLAR__UPSTREAM__SERVERS__` will be populated by
194194
the `node-local-dns` pods.
195195
In this mode, the `node-local-dns` pods listen on both the kube-dns service IP
196-
as well as `<node-local-address>`, so pods can lookup DNS records using either IP address.
196+
as well as `<node-local-address>`, so pods can look up DNS records using either IP address.
197197
-->
198198
* 如果 kube-proxy 运行在 IPTABLES 模式:
199199

content/zh-cn/docs/tasks/configure-pod-container/migrate-from-psp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ configuration of the API server:
633633
<!--
634634
To verify that the PodSecurityPolicy admission controller is no longer enabled, you can manually run
635635
a test by impersonating a user without access to any PodSecurityPolicies (see the
636-
[PodSecurityPolicy example](/docs/concepts/policy/pod-security-policy/#example)), or by verifying in
636+
[PodSecurityPolicy example](/docs/concepts/security/pod-security-policy/#example)), or by verifying in
637637
the API server logs. At startup, the API server outputs log lines listing the loaded admission
638638
controller plugins:
639639
-->

content/zh-cn/docs/tasks/job/automated-tasks-with-cron-jobs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ For more information about working with Kubernetes objects and their
218218
{{< glossary_tooltip text="manifests" term_id="manifest" >}}, see the
219219
[managing resources](/docs/concepts/cluster-administration/manage-deployment/),
220220
and [using kubectl to manage resources](/docs/concepts/overview/working-with-objects/object-management/) documents.
221-
Each manifest for a CrobJob also needs a [`.spec`](/docs/concepts/overview/working-with-objects/kubernetes-objects/#object-spec-and-status) section.
221+
Each manifest for a CronJob also needs a [`.spec`](/docs/concepts/overview/working-with-objects/kubernetes-objects/#object-spec-and-status) section.
222222
223223
-->
224224
## 编写 CronJob 声明信息 {#writing-a-cronjob-spec}

0 commit comments

Comments
 (0)