Practice Test - Node Affinity alias k=kubectl # node01의 라벨 확인 k get no node01 --show-labels=true k label no node01 color=blue k create deploy blue --image=nginx --replicas=3 --dry-run=client -o yaml > blue.yaml k apply -f blue.yaml node01에만 배포되는 nodeaffinity 설정 apiVersion: apps/v1 kind: Deployment metadata: creationTimestamp: null labels: app: blue name: blue spec: replicas: 3 selector: matchLab..