IuriiO Notebook
Home
Search…
Broken Code Notebook
Cloud
AWS
Containers & Services
Docker
Kubernetes
Useful Links
Introduction
Getting started
Exposing containers
Kubernetes Management Techniques
Labels and Annotations
Storage in Kubernetes
Ingress Controller
CRD's and The Operator Pattern
Kubernetes Dashboard
Kubectl Namespaces and Context
Frontend
Resources
Design
Architecture and Design
Stuff
Japanese
Powered By
GitBook
Labels and Annotations
Labels go under metadata: in your YAML
Simple list of
key: value
for identifying your resource later by selecting, grouping, or filtering for it
Common examples include 'tier: frontend, app: api, env: prod, customer: acme.co'
Not meant to hold complex, large or non-identifying information, which is what annotations are for
Filter a get command by label:
kubectl get pods -l app=nginx
Apply only matching labels:
kubectl apply -f myfile.yml -l app=nginx
​
Previous
Declarative YAML
Next
Storage in Kubernetes
Last modified
2yr ago
Copy link