3. Label与Annotation
3.1 Label
查看资源的标签信息
1 | kubectl get nodes --show-labels |
Label的添加与删除,Key必须存在且唯一,Value可以为空、且不唯一
1 | # 添加Label |
查看node的角色
1 | kubectl get nodes |
3.2 Annotation
查看Annotation
1 | kubectl describe resource_type/resource_name |
Annotation的添加与删除,#Key必须存在且唯一,Value可以为空、且不唯一
1 | 添加Annotation |