在其他文章里我們提到缆娃,k8s里面有一些group & manage resources的方式登失,比如Label莺褒,Namespace。但有時候我們還會聽到類似的一個概念,叫Annotation鼠渺。
它和Label有點類似鸭巴,但是不能group & manage resources,我們來簡單聊聊Annotation拦盹。
1. Annotation Intro
官方doc說:
You can use Kubernetes annotations to attach arbitrary non-identifying metadata to objects. Clients such as tools and libraries can retrieve this metadata.
和Label類似的是:它也是key-value pair鹃祖,也可以在resource object創(chuàng)建的時候指定,也可以給已經(jīng)存在的object添加或修改Annotation普舆。
Annotations的形式如下(和Label幾乎一樣):
"metadata": {
"annotations": {
"key1" : "value1",
"key2" : "value2"
}
}
但和Label不同的是:
- Annotation可以相對比較長(relatively large blobs of data)恬口,只需要256KB之內(nèi)。
- Annotation沒有對應(yīng)的selector沼侣,也就是說我們不能根據(jù)Annotation來filter object祖能。
有什么使用Annotation的例子嗎?我們可以用它來描述contributor蛾洛,creation time之類的养铸。
2. Commands
想查看Annotation,可以通過顯示Pod(或其他resource object)的yaml:
kubectl get po <pod-name> -o yaml
或者通過:
kubectl describe pod <pod-name>
給Pod添加Annotation:
kubectl annotate po <pod-name> <annotation_key>=<annotation_value>
Reference:
- Kubernetes in Action