Merge pull request #46493 from asa3311/sync-zh-121
[zh] sync operator components assign-pod-nodepull/46495/head^2
commit
01c5a86208
|
@ -218,7 +218,6 @@ operator.
|
|||
* [kube-rs](https://kube.rs/) (Rust)
|
||||
* [kubebuilder](https://book.kubebuilder.io/)
|
||||
* [KubeOps](https://buehler.github.io/dotnet-operator-sdk/) (.NET operator SDK)
|
||||
* [KUDO](https://kudo.dev/) (Kubernetes Universal Declarative Operator)
|
||||
* [Mast](https://docs.ansi.services/mast/user_guide/operator/)
|
||||
* [Metacontroller](https://metacontroller.github.io/metacontroller/intro.html) along with WebHooks that
|
||||
you implement yourself
|
||||
|
@ -232,7 +231,6 @@ operator.
|
|||
* [kube-rs](https://kube.rs/) (Rust)
|
||||
* [kubebuilder](https://book.kubebuilder.io/)
|
||||
* [KubeOps](https://buehler.github.io/dotnet-operator-sdk/) (.NET operator SDK)
|
||||
* [KUDO](https://kudo.dev/)(Kubernetes 通用声明式 Operator)
|
||||
* [Mast](https://docs.ansi.services/mast/user_guide/operator/)
|
||||
* [Metacontroller](https://metacontroller.github.io/metacontroller/intro.html),可与 Webhook 结合使用,以实现自己的功能。
|
||||
* [Operator Framework](https://operatorframework.io)
|
||||
|
|
|
@ -33,7 +33,7 @@ When you deploy Kubernetes, you get a cluster.
|
|||
This document outlines the various components you need to have for
|
||||
a complete and working Kubernetes cluster.
|
||||
|
||||
{{ < figure src="/images/docs/components-of-kubernetes.svg" alt="Components of Kubernetes" caption="The components of a Kubernetes cluster" class="diagram-large" >}}
|
||||
{{ < figure src="/images/docs/components-of-kubernetes.svg" alt="Components of Kubernetes" caption="The components of a Kubernetes cluster" class="diagram-large" clicktozoom="true" >}}
|
||||
-->
|
||||
当你部署完 Kubernetes,便拥有了一个完整的集群。
|
||||
|
||||
|
@ -41,7 +41,7 @@ a complete and working Kubernetes cluster.
|
|||
|
||||
本文档概述了一个正常运行的 Kubernetes 集群所需的各种组件。
|
||||
|
||||
{{< figure src="/images/docs/components-of-kubernetes.svg" alt="Kubernetes 的组件" caption="Kubernetes 集群的组件" class="diagram-large" >}}
|
||||
{{< figure src="/images/docs/components-of-kubernetes.svg" alt="Kubernetes 的组件" caption="Kubernetes 集群的组件" class="diagram-large" clicktozoom="true" >}}
|
||||
|
||||
<!-- body -->
|
||||
|
||||
|
|
|
@ -1113,13 +1113,13 @@ The following operators can only be used with `nodeAffinity`.
|
|||
<!--
|
||||
| Operator | Behaviour |
|
||||
| :------------: | :-------------: |
|
||||
| `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 |
|
||||
| `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 |
|
||||
| `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 |
|
||||
| `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 |
|
||||
-->
|
||||
| 操作符 | 行为 |
|
||||
| :------------: | :-------------: |
|
||||
| `Gt` | 提供的值将被解析为整数,并且该整数小于通过解析此选择算符命名的标签的值所得到的整数 |
|
||||
| `Lt` | 提供的值将被解析为整数,并且该整数大于通过解析此选择算符命名的标签的值所得到的整数 |
|
||||
| `Gt` | 字段值将被解析为整数,并且该整数小于或等于通过解析此选择算符命名的标签的值所得到的整数 |
|
||||
| `Lt` | 字段值将被解析为整数,并且该整数大于或等于通过解析此选择算符命名的标签的值所得到的整数 |
|
||||
|
||||
{{<note>}}
|
||||
<!--
|
||||
|
|
Loading…
Reference in New Issue