1 Star 0 Fork 0

zhuchance / kubernetes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
labels.md 2.43 KB
一键复制 编辑 原始数据 按行查看 历史

Labels

Labels are key/value pairs that are attached to objects, such as pods. Labels can be used to organize and to select subsets of objects. They are created by users at the same time as an object. Each object can have a set of key/value labels set on it, with at most one label with a particular key.

"labels": {
  "key1" : "value1",
  "key2" : "value2"
}

While there are no restrictions on the format of label values, label keys must be of the form:

label-key ::= prefixed-name | name
prefixed-name ::= prefix '/' name
prefix ::= DNS_SUBDOMAIN
name ::= DNS_LABEL

DNS_LABEL and DNS_SUBDOMAIN are defined in the identifiers design doc. The prefix is optional. If the prefix is not specified, the key is assumed to be private to the user. Other system components that wish to use labels must specify a prefix. The "kubernetes.io/" prefix is reserved for use by kubernetes components.

Unlike names and UIDs, labels do not provide uniqueness. In general, we expect many objects to carry the same label(s).

Via a label selector, the client/user can identify a set of objects. The label selector is the core grouping primitive in Kubernetes.

We also plan to make labels available inside pods and lifecycle hooks.

Labels let you categorize objects in a complex service deployment or batch processing pipelines along multiple dimensions, such as:

  • release=stable, release=canary, ...
  • environment=dev, environment=qa, environment=production
  • tier=frontend, tier=backend, ...
  • partition=customerA, partition=customerB, ...
  • track=daily, track=weekly

These are just examples; you are free to develop your own conventions.

Label selectors permit very simple filtering by label keys and values. Currently, label selectors only support these forms:

key1
key1 = value11
key1 != value11
key1 in (value11, value12, ...)
key1 not in (value11, value12, ...)

LIST and WATCH operations may specify label selectors to filter the sets of objects returned using a query parameter: ?labels=key1%3Dvalue1,key2%3Dvalue2,....

The service and replicationController kinds of objects use selectors to match sets of pods that they operate on.

See the Labels Design Document for more about how we expect labels and selectors to be used, and planned features.

Go
1
https://gitee.com/meoom/kubernetes.git
git@gitee.com:meoom/kubernetes.git
meoom
kubernetes
kubernetes
v0.12.0

搜索帮助

53164aa7 5694891 3bd8fe86 5694891