[zh] Translate 'label-selector' into Chinese (#32202)

* Translate label-selector into Chinese

* [zh] Translate label-selector into Chinese
This commit is contained in:
twilight0620
2022-03-23 11:05:59 +08:00
committed by GitHub
parent 1205400772
commit 3147d5cea6
2 changed files with 108 additions and 0 deletions
@@ -0,0 +1,5 @@
---
title: "公共定义"
weight: 9
---
@@ -0,0 +1,103 @@
<!--
api_metadata:
apiVersion: ""
import: "k8s.io/apimachinery/pkg/apis/meta/v1"
kind: "LabelSelector"
content_type: "api_reference"
description: "A label selector is a label query over a set of resources."
title: "LabelSelector"
weight: 2
-->
---
api_metadata:
apiVersion: ""
import: "k8s.io/apimachinery/pkg/apis/meta/v1"
kind: "LabelSelector"
content_type: "api_reference"
description: "标签选择器是对一组资源的标签查询。"
title: "标签选择器"
weight: 2
auto_generated: true
---
`import "k8s.io/apimachinery/pkg/apis/meta/v1"`
<!-- A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.-->
标签选择器是对一组资源的标签查询。
`matchLabels``matchExpressions` 的结果按逻辑与的关系组合。一个 `empty` 标签选择器匹配所有对象。一个 `null` 标签选择器不匹配任何对象。
<hr>
<!--
- **matchExpressions** ([]LabelSelectorRequirement)
matchExpressions is a list of label selector requirements. The requirements are ANDed.
<a name="LabelSelectorRequirement"></a>
*A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.*
-->
- **matchExpressions** ([]LabelSelectorRequirement)
`matchExpressions``LabelSelectorRequirement` 的列表,这些需求结果按逻辑与的关系来计算。
<a name="LabelSelectorRequirement"></a>
*标签选择器要求是包含值、键和关联键和值的运算符的选择器。*
<!--
- **matchExpressions.key** (string), required
*Patch strategy: merge on key `key`*
key is the label key that the selector applies to.
-->
- **matchExpressions.key** (string) 必填
*补丁策略: 按照键 `key` 合并*
`key` 是选择器应用的标签键.
<!--
- **matchExpressions.operator** (string), required
operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
-->
- **matchExpressions.operator** (string),必填
operator 表示键与一组值的关系。有效的运算符包括 `In``NotIn``Exists``DoesNotExist`
<!--
- **matchExpressions.values** ([]string)
values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
-->
- **matchExpressions.values** ([]string)
`values` 是一个字符串值数组。如果运算符为 `In``NotIn`,则 `values` 数组必须为非空。
如果运算符是 `Exists``DoesNotExist`,则 `values` 数组必须为空。
该数组在战略性补丁(Strategic Merge Patch)期间被替换。
<!--
- **matchLabels** (map[string]string)
matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
-->
- **matchLabels** (map[string]string)
`matchLabels` 是 {`key`,`value`} 键值对的映射。
`matchLabels` 映射中的单个 {`key`,`value`} 键值对相当于 `matchExpressions` 的一个元素,其键字段为 `key`,运算符为 `In``values` 数组仅包含 `value`
所表达的需求最终要按逻辑与的关系组合。