파드에 접속해서 어플리케이션 설치해보자 네임스페이스를 디폴트로 해서 파드를 확인한다. 1 kubectl get pods -n default kubectl get pods 파드네 컨테이너수 이다. 2 변수로 저장. 첫번째 pod 이름을 환경 변수에 저장 export MY_POD_NAME=$(kubectl get pods -n default -o jsonpath='{.items[0].metadata.name}') kubectl -n default describe pod $MY_POD_NAME 3 pod 에서 bash shell에 연결한다. kubectl exec -it ${MY_POD_NAME} -n default -- /bin/bash ls 4 게임 설치 apk add micro-tetris tetris exit