Kubernetes netshoot Shell Pod 실행
1. 실행 환경
실행 환경은 다음과 같다.
- Kubernetes 1.18
2. netshoot Shell Pod 실행
$ kubectl run my-shell --rm -i --tty --image nicolaka/netshoot -- bash
netshoot Pod을 생성하고 Bash로 진입한다.
2.1. With Host Network Namespace
|
|
[File 1]을 이용하여 Host Network Namespace를 이용하는 netshoot Pod을 생성한다.
$ kubectl exec -it my-shell-hostnet -- bash
netshoot Pod에 진입한다.