1. Kubernetes 컨텍스트 및 클러스터 관리 현재 컨텍스트 설정 또는 보기kubectl config current-context # Show the current contextkubectl config use-context # Switch to a different contextkubectl config get-contexts # List all available contexts 클러스터 정보 확인kubectl cluster-info # Display information about the clusterkubectl get nodes # List all nodes in the clusterkube..