쿠버네티스 클러스터가 구축된 격리된 환경에서 클러스터 내부의 service 혹은 pod 에 직접 접속할 수 있는 간단한 방법으로 port forward 이 있다.
사용법은 아래와 같다.
kubectl port-forward service/<서비스이름> <local port>:<service port>
kubectl port-forward pods/<파드이름> <local port>:<pod port>
위 명령은 <local port> 로 지정된 port 를 통해 쿠버네티스의 service 에서 사용하고 있는 <service port> 로 포워딩을 해준다.
혹은 <local port> 로 지정된 port 를 통해 쿠버네티스의 pod 에서 사용하고 있는 <pod port> 로 포워딩을 해준다.
ex)
kubectl port-forward service/redis-demo-service 8080:8080
Forwarding from 127.0.0.1:8080 -> 8080
Forwarding from [::1]:8080 -> 8080
kubectl port-forward pod/pod1 8080:8080
Forwarding from 127.0.0.1:8080 -> 8080
Forwarding from [::1]:8080 -> 8080
자세한 내용은 kubernetes port-forward 공식문서를 참고하면 좋다.
'쿠버네티스' 카테고리의 다른 글
macOS (silicon) minikube 설치하기 (0) | 2023.08.24 |
---|---|
macOS (apple silicon) 에 kubectl 설치하기 (0) | 2023.08.24 |
쿠버네티스 pod graceful shutdown (0) | 2023.08.06 |
Release 상태의 PV 를 Available 상태로 변경하기 (0) | 2023.07.30 |
deployment 로 배포된 pod 이름만 추출하기 (0) | 2023.07.30 |
댓글