Exercise 3.3: Finish Cluster Setup
CP 노드에 연결된 터미널로 이동
Node 상태 확인
kubectl get node
CP 노드 상태 상세 확인
kubectl describe node cp
Node에 부여된 Taint 확인
kubectl get nodes \ -o=custom-columns=NodeName:.metadata.name,TaintKey:.spec.taints[*].key,TaintValue:.spec.taints[*].value,TaintEffect:.spec.taints[*].effect
Node에 부여된 Taint 삭제
kubectl taint nodes cp node-role.kubernetes.io/control-plane-
Node에 부여된 Taint 확인
kubectl get nodes \ -o=custom-columns=NodeName:.metadata.name,TaintKey:.spec.taints[*].key,TaintValue:.spec.taints[*].value,TaintEffect:.spec.taints[*].effect
Last updated