tldr/pages/common/kubectl-label.md

25 lines
610 B
Markdown
Raw Normal View History

# kubectl label
> Label Kubernetes resources.
> 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:
2024-05-25 17:06:04 +01:00
`kubectl label --overwrite pod {{pod_name}} {{key}}={{value}}`
- Label all pods in the namespace:
`kubectl label pods --all {{key}}={{value}}`
2024-05-25 17:06:04 +01:00
- Label a pod identified by the pod definition file:
2024-05-25 17:06:04 +01:00
`kubectl label -f {{pod_definition_file}} {{key}}={{value}}`
- Remove the label from a pod:
`kubectl label pod {{pod_name}} {{key}}-`