You've already forked devops-exercises
mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2025-07-15 23:54:32 +02:00
311 B
311 B
Labels and Selectors 101
Objectives
- How to list all the Pods with the label "app=web"?
- How to list all objects labeled as "env=staging"?
- How to list all deployments from "env=prod" and "type=web"?
Solution
k get po -l app=web
k get all -l env=staging
k get deploy -l env=prod,type=web