본문 바로가기
빅데이터/kubernetes

[k8s] k8s 노드에 ssh 키없이 접근 하는 방법(Lens의 node shell 파드 이용하는 방법)

by hs_seo 2023. 6. 2.

오픈 렌즈에서는 ssh 키 없이 노드에 접근할 수 있습니다 이는 nsenter 명령어를 이용하여 키 없이 노드에 접근할 수 있습니다.

 

https://github.com/lensapp/lens/blob/5670312c474eb5b6d506a3793863707a7df76775/src/main/node-shell-session.ts#L57-L87

 

GitHub - lensapp/lens: Lens - The way the world runs Kubernetes

Lens - The way the world runs Kubernetes. Contribute to lensapp/lens development by creating an account on GitHub.

github.com

 

소스코드는 이곳에서 확인할 수 있습니다. 해당 pod 는 다음의 코드를 이용하여 생성할 수 있습니다 파드를 생성하고, bash 명령어로 접근하면 노드에 root 계정으로 접근할 수 있습니다.

 

namesapce와 접근하고자 하는 노드의 이름을 nodeName에 입력하고 생성하면 됩니다.

 

 

반응형