Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 393 Bytes

08.Label&Selector.md

File metadata and controls

24 lines (21 loc) · 393 Bytes
kubectl get pods -o wide --selector env=dev

kubectl get all -o wide --selector env=dev,bu=finance,tier=frontend


apiVersion: apps/v1
kind: ReplicaSet
metadata:
  name: replicaset-1
spec:
  replicas: 2
  selector:
    matchLabels:
      tier: frontend
  template:
    metadata:
      labels:
        tier: frontend
    spec:
      containers:
      - name: nginx
        image: nginx