Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-08 00:19:16 +00:00
parent 4102fec4f8
commit 52f5647220
45 changed files with 1002 additions and 38 deletions

29
tldr/kubectl-annotate Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# kubectl annotate
> Annotates Kubernetes resources.
> More information: <https://kubernetes.io/docs/reference/kubectl/generated/kubectl_annotate>.
- Annotate a pod:
`kubectl annotate {{[po|pods]}} {{pod_name}} {{key}}={{value}}`
- Update a pod annotation by overwriting the existing value:
`kubectl annotate {{[po|pods]}} {{pod_name}} {{key}}={{value}} --overwrite`
- Annotate all pods in a namespace with a specific label selector:
`kubectl annotate {{[po|pods]}} {{key}}={{value}} {{[-l|--selector]}} {{label_key}}={{label_value}}`
- List all annotations a pod has:
`kubectl annotate {{[po|pods]}} {{pod_name}} --list`
- Remove the annotation from a pod:
`kubectl annotate {{[po|pods]}} {{pod_name}} {{key}}-`