2023-12-14 12:11:19 +00:00
|
|
|
# kubectl label
|
2023-10-20 05:10:26 +01:00
|
|
|
|
2023-12-14 12:11:19 +00:00
|
|
|
> Label Kubernetes resources.
|
2023-10-20 05:10:26 +01:00
|
|
|
> More information: <https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#label>.
|
|
|
|
|
|
|
|
- Label a pod:
|
|
|
|
|
|
|
|
`kubectl label pod {{pod_name}} {{key}}={{value}}`
|
|
|
|
|
|
|
|
- Update a pod label by overwriting the existing value:
|
|
|
|
|
|
|
|
`kubectl label --overwrite {{pod_name}} {{key}}={{value}}`
|
|
|
|
|
|
|
|
- Label all pods in the namespace:
|
|
|
|
|
|
|
|
`kubectl label pods --all {{key}}={{value}}`
|
|
|
|
|
|
|
|
- Label pod identified by pod definition file:
|
|
|
|
|
|
|
|
`kubectl label -f {{pod_defination_file}} {{key}}={{value}}`
|
|
|
|
|
|
|
|
- Remove the label from a pod:
|
|
|
|
|
|
|
|
`kubectl label pod {{pod_name}} {{key}}-`
|