Skip to content

Commit 01c5a86

Browse files
authored
Merge pull request #46493 from asa3311/sync-zh-121
[zh] sync operator components assign-pod-node
2 parents 8cf49db + 609f1aa commit 01c5a86

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ operator.
218218
* [kube-rs](https://kube.rs/) (Rust)
219219
* [kubebuilder](https://book.kubebuilder.io/)
220220
* [KubeOps](https://buehler.github.io/dotnet-operator-sdk/) (.NET operator SDK)
221-
* [KUDO](https://kudo.dev/) (Kubernetes Universal Declarative Operator)
222221
* [Mast](https://docs.ansi.services/mast/user_guide/operator/)
223222
* [Metacontroller](https://metacontroller.github.io/metacontroller/intro.html) along with WebHooks that
224223
you implement yourself
@@ -232,7 +231,6 @@ operator.
232231
* [kube-rs](https://kube.rs/) (Rust)
233232
* [kubebuilder](https://book.kubebuilder.io/)
234233
* [KubeOps](https://buehler.github.io/dotnet-operator-sdk/) (.NET operator SDK)
235-
* [KUDO](https://kudo.dev/)(Kubernetes 通用声明式 Operator)
236234
* [Mast](https://docs.ansi.services/mast/user_guide/operator/)
237235
* [Metacontroller](https://metacontroller.github.io/metacontroller/intro.html),可与 Webhook 结合使用,以实现自己的功能。
238236
* [Operator Framework](https://operatorframework.io)

content/zh-cn/docs/concepts/overview/components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ When you deploy Kubernetes, you get a cluster.
3333
This document outlines the various components you need to have for
3434
a complete and working Kubernetes cluster.
3535
36-
{{ < figure src="/images/docs/components-of-kubernetes.svg" alt="Components of Kubernetes" caption="The components of a Kubernetes cluster" class="diagram-large" >}}
36+
{{ < figure src="/images/docs/components-of-kubernetes.svg" alt="Components of Kubernetes" caption="The components of a Kubernetes cluster" class="diagram-large" clicktozoom="true" >}}
3737
-->
3838
当你部署完 Kubernetes,便拥有了一个完整的集群。
3939

4040
{{< glossary_definition term_id="cluster" length="all" >}}
4141

4242
本文档概述了一个正常运行的 Kubernetes 集群所需的各种组件。
4343

44-
{{< figure src="/images/docs/components-of-kubernetes.svg" alt="Kubernetes 的组件" caption="Kubernetes 集群的组件" class="diagram-large" >}}
44+
{{< figure src="/images/docs/components-of-kubernetes.svg" alt="Kubernetes 的组件" caption="Kubernetes 集群的组件" class="diagram-large" clicktozoom="true" >}}
4545

4646
<!-- body -->
4747

content/zh-cn/docs/concepts/scheduling-eviction/assign-pod-node.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,13 +1113,13 @@ The following operators can only be used with `nodeAffinity`.
11131113
<!--
11141114
| Operator | Behaviour |
11151115
| :------------: | :-------------: |
1116-
| `Gt` | The supplied value will be parsed as an integer, and that integer is less than the integer that results from parsing the value of a label named by this selector |
1117-
| `Lt` | The supplied value will be parsed as an integer, and that integer is greater than the integer that results from parsing the value of a label named by this selector |
1116+
| `Gt` | The field value will be parsed as an integer, and that integer is less than or equal to the integer that results from parsing the value of a label named by this selector |
1117+
| `Lt` | The field value will be parsed as an integer, and that integer is greater than or equal to the integer that results from parsing the value of a label named by this selector |
11181118
-->
11191119
| 操作符 | 行为 |
11201120
| :------------: | :-------------: |
1121-
| `Gt` | 提供的值将被解析为整数,并且该整数小于通过解析此选择算符命名的标签的值所得到的整数 |
1122-
| `Lt` | 提供的值将被解析为整数,并且该整数大于通过解析此选择算符命名的标签的值所得到的整数 |
1121+
| `Gt` | 字段值将被解析为整数,并且该整数小于或等于通过解析此选择算符命名的标签的值所得到的整数 |
1122+
| `Lt` | 字段值将被解析为整数,并且该整数大于或等于通过解析此选择算符命名的标签的值所得到的整数 |
11231123

11241124
{{<note>}}
11251125
<!--

0 commit comments

Comments
 (0)