목차

셀렉터

셀렉터는 레이블 (또는 레이블 집합)을 찾는 표현식이다.

apiVersion: v1
kind: Service
...
spec:
  ...
  selector:
    app: demo

클러스터 조회

kubectl get pods --all-namespaces --selector app=demo

고급 셀렉터

kubectl get pods -l app=demo,environment=production


관련 문서