kube-proxy 실행
$ kubectl proxy --port=8080 --address=0.0.0.0 --disable-filter=true &
토큰 출력 (awscli + jq)
$ aws eks get-token --cluster-name dev-opgg-seoul | jq -r '.status.token'
토큰 출력 (kubtctl)
$ kubectl -n kube-system describe secret $(kubectl -n kube-system get secret | grep eks-admin | awk '{print $1}')
접속 URL ( 토큰 입력)
http://localhost:8080/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/
'Kubernetes' 카테고리의 다른 글
nodeAffinity 를 이용하여 pod 를 원하는 노드에 배포하기 (0) | 2019.07.31 |
---|---|
쿠버네티스 대시보드 편하게 접속하기(#1) (0) | 2019.07.29 |
Service 재시작 하기 (0) | 2019.07.25 |
Pod 재시작 하기 (0) | 2019.07.15 |
쿠버네티스에서 컨테이너 네임, 이미지 출력 (0) | 2019.07.01 |