Skip to content

Commit 48b6481

Browse files
authored
Merge pull request #37531 from Sea-n/zh-fix-bold
[zh-cn] Fix bold format
2 parents 1db4807 + 37531ab commit 48b6481

File tree

5 files changed

+15
-16
lines changed

5 files changed

+15
-16
lines changed

content/zh-cn/docs/concepts/cluster-administration/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Before choosing a guide, here are some considerations:
7676
作为代替,你可以建立多个集群。
7777
- **如果你在本地配置 Kubernetes**
7878
需要考虑哪种[网络模型](/zh-cn/docs/concepts/cluster-administration/networking/)最适合。
79-
- 你的 Kubernetes 在**裸金属硬件**上还是**虚拟机(VM)**上运行?
79+
- 你的 Kubernetes 在**裸机**上还是**虚拟机(VM)** 上运行?
8080
- 你是想**运行一个集群**,还是打算**参与开发 Kubernetes 项目代码**
8181
如果是后者,请选择一个处于开发状态的发行版。
8282
某些发行版只提供二进制发布版,但提供更多的选择。
@@ -93,7 +93,7 @@ Before choosing a guide, here are some considerations:
9393

9494
* 学习如何[管理节点](/zh-cn/docs/concepts/architecture/nodes/)
9595

96-
* 学习如何设定和管理集群共享的[资源配额](/zh-cn/docs/concepts/policy/resource-quotas/)
96+
* 学习如何设定和管理集群共享的[资源配额](/zh-cn/docs/concepts/policy/resource-quotas/)
9797

9898
<!--
9999
## Securing a cluster

content/zh-cn/docs/concepts/extend-kubernetes/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ and [CNI network plugins](/docs/concepts/extend-kubernetes/compute-storage-net/n
192192
and by kubectl (see [Extend kubectl with plugins](/docs/tasks/extend-kubectl/kubectl-plugins/)).
193193
-->
194194
在 Webhook 模型中,Kubernetes 向远程服务发起网络请求。
195-
在另一种称作**可执行文件插件(Binary Plugin)**模型中,Kubernetes 执行某个可执行文件(程序)。
195+
在另一种称作**可执行文件插件(Binary Plugin)** 模型中,Kubernetes 执行某个可执行文件(程序)。
196196
这些可执行文件插件由 kubelet(例如,[CSI 存储插件](https://kubernetes-csi.github.io/docs/)
197197
[CNI 网络插件](/zh-cn/docs/concepts/extend-kubernetes/compute-storage-net/network-plugins/)
198198
和 kubectl 使用。
@@ -239,7 +239,7 @@ clients that access it.
239239
基于其内容阻止请求、编辑请求内容、处理删除操作等等。
240240
这些扩展点在 [API 访问扩展](#api-access-extensions)节详述。
241241

242-
3. API 服务器能提供各种类型的**资源(Resources)**服务。
242+
3. API 服务器能提供各种类型的**资源(Resources)** 服务。
243243
诸如 `pods`**内置资源类型**是由 Kubernetes 项目所定义的,无法改变。
244244
请查阅 [API 扩展](#api-extensions)了解如何扩展 Kubernetes API。
245245

@@ -297,7 +297,7 @@ several types of extensions.
297297

298298
<!-- image source for flowchart: https://docs.google.com/drawings/d/1sdviU6lDz4BpnzJNHfNpQrqI9F19QZ07KnhnxVrp2yg/edit -->
299299
{{< figure src="/zh-cn/docs/concepts/extend-kubernetes/flowchart.png"
300-
alt="附带使用场景问题和实现指南的流程图。 绿圈表示是; 红圈表示否。"
300+
alt="附带使用场景问题和实现指南的流程图。绿圈表示是;红圈表示否。"
301301
class="diagram-large" caption="选择一个扩展方式的流程图指导" >}}
302302

303303
---

content/zh-cn/docs/concepts/services-networking/topology-aware-hints.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 拓扑感知提示
33
content_type: concept
44
weight: 70
55
description: >-
6-
**拓扑感知提示(Topology Aware Hints)**提供了一种机制来帮助将网络流量保持在其请求方所在的区域内。
6+
**拓扑感知提示(Topology Aware Hints)** 提供了一种机制来帮助将网络流量保持在其请求方所在的区域内。
77
在集群中的 Pod 之间优先选用相同区域的流量有助于提高可靠性、增强性能(网络延迟和吞吐量)或降低成本。
88
---
99
<!--
@@ -25,14 +25,14 @@ description: >-
2525
<!--
2626
_Topology Aware Hints_ enable topology aware routing by including suggestions
2727
for how clients should consume endpoints. This approach adds metadata to enable
28-
consumers of EndpointSlice and / or Endpoints objects, so that traffic to
28+
consumers of EndpointSlice (or Endpoints) objects, so that traffic to
2929
those network endpoints can be routed closer to where it originated.
3030
3131
For example, you can route traffic within a locality to reduce
3232
costs, or to improve network performance.
3333
-->
3434
**拓扑感知提示**包含客户怎么使用服务端点的建议,从而实现了拓扑感知的路由功能。
35-
这种方法添加了元数据,以启用 EndpointSlice 和/或 Endpoints 对象的调用者,
35+
这种方法添加了元数据,以启用 EndpointSlice或 Endpoints对象的调用者,
3636
这样,访问这些网络端点的请求流量就可以在它的发起点附近就近路由。
3737

3838
例如,你可以在一个地域内路由流量,以降低通信成本,或提高网络性能。
@@ -284,5 +284,4 @@ Kubernetes 控制平面和每个节点上的 kube-proxy,在使用拓扑感知
284284
<!--
285285
* Read [Connecting Applications with Services](/docs/concepts/services-networking/connect-applications-service/)
286286
-->
287-
288287
* 参阅[通过服务连通应用](/zh-cn/docs/concepts/services-networking/connect-applications-service/)

content/zh-cn/docs/concepts/workloads/pods/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ PodTemplates are specifications for creating Pods, and are included in workload
331331
### Pod 模板 {#pod-templates}
332332

333333
{{< glossary_tooltip text="工作负载" term_id="workload" >}}资源的控制器通常使用
334-
**Pod 模板(Pod Template)**来替你创建 Pod 并管理它们。
334+
**Pod 模板(Pod Template)** 来替你创建 Pod 并管理它们。
335335

336336
Pod 模板是包含在工作负载对象中的规范,用来创建 Pod。这类负载资源包括
337337
[Deployment](/zh-cn/docs/concepts/workloads/controllers/deployment/)
@@ -457,7 +457,7 @@ Kubernetes 并不禁止你直接管理 Pod。对运行中的 Pod 的某些字段
457457
- Pod 更新不可以改变除 `spec.containers[*].image``spec.initContainers[*].image`
458458
`spec.activeDeadlineSeconds``spec.tolerations` 之外的字段。
459459
对于 `spec.tolerations`,你只被允许添加新的条目到其中。
460-
- 在更新`spec.activeDeadlineSeconds` 字段时,以下两种更新操作是被允许的:
460+
- 在更新 `spec.activeDeadlineSeconds` 字段时,以下两种更新操作是被允许的:
461461

462462
1. 如果该字段尚未设置,可以将其设置为一个正数;
463463
1. 如果该字段已经设置为一个正数,可以将其设置为一个更小的、非负的整数。
@@ -569,7 +569,7 @@ Pods, the kubelet directly supervises each static Pod (and restarts it if it fai
569569
-->
570570
## 静态 Pod {#static-pods}
571571

572-
**静态 Pod(Static Pod)**直接由特定节点上的 `kubelet` 守护进程管理,
572+
**静态 Pod(Static Pod)** 直接由特定节点上的 `kubelet` 守护进程管理,
573573
不需要 {{< glossary_tooltip text="API 服务器" term_id="kube-apiserver" >}}看到它们。
574574
尽管大多数 Pod 都是通过控制面(例如,{{< glossary_tooltip text="Deployment" term_id="deployment" >}})
575575
来管理的,对于静态 Pod 而言,`kubelet` 直接监控每个 Pod,并在其失效时重启之。

content/zh-cn/docs/tasks/access-application-cluster/web-ui-dashboard.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ The deploy wizard expects that you provide the following information:
162162
<!--
163163
- **App name** (mandatory): Name for your application. A [label](/docs/concepts/overview/working-with-objects/labels/) with the name will be added to the Deployment and Service, if any, that will be deployed.
164164
-->
165-
- **应用名称**(必填):应用的名称。内容为`应用名称`
165+
- **应用名称**(必填):应用的名称。内容为 `应用名称`
166166
[标签](/zh-cn/docs/concepts/overview/working-with-objects/labels/)
167167
会被添加到任何将被部署的 Deployment 和 Service。
168168

@@ -196,7 +196,7 @@ The deploy wizard expects that you provide the following information:
196196
- **Service** (optional): For some parts of your application (e.g. frontends) you may want to expose a [Service](/docs/concepts/services-networking/service/) onto an external, maybe public IP address outside of your cluster (external Service).
197197
-->
198198
- **服务**(可选):对于部分应用(比如前端),你可能想对外暴露一个
199-
[Service](/zh-cn/docs/concepts/services-networking/service/) ,这个 Service
199+
[Service](/zh-cn/docs/concepts/services-networking/service/),这个 Service
200200
可能用的是集群之外的公网 IP 地址(外部 Service)。
201201

202202
<!--
@@ -312,7 +312,7 @@ If needed, you can expand the **Advanced options** section where you can specify
312312
<!--
313313
- **CPU requirement (cores)** and **Memory requirement (MiB)**: You can specify the minimum [resource limits](/docs/tasks/configure-pod-container/limit-range/) for the container. By default, Pods run with unbounded CPU and memory limits.
314314
-->
315-
- **CPU 需求(核数)****内存需求(MiB)**:你可以为容器定义最小的
315+
- **CPU 需求(核数)****内存需求(MiB)**:你可以为容器定义最小的
316316
[资源限制](/zh-cn/docs/tasks/administer-cluster/manage-resources/memory-default-namespace/)
317317
默认情况下,Pod 没有 CPU 和内存限制。
318318

@@ -393,7 +393,7 @@ allocated resources, events and pods running on the node.
393393
-->
394394
#### 管理概述
395395

396-
集群和名字空间管理的视图, Dashboard 会列出节点、名字空间和持久卷,并且有它们的详细视图。
396+
集群和名字空间管理的视图Dashboard 会列出节点、名字空间和持久卷,并且有它们的详细视图。
397397
节点列表视图包含从所有节点聚合的 CPU 和内存使用的度量值。
398398
详细信息视图显示了一个节点的度量值,它的规格、状态、分配的资源、事件和这个节点上运行的 Pod。
399399

0 commit comments

Comments
 (0)