DEV Community

Agik Setiawan
Agik Setiawan

Posted on

4 3

Access container in Kubernetes with CLI

First we must get list of pod with command

kubectl get pod
Enter fullscreen mode Exit fullscreen mode

for access container we use pod name like bellow

kubectl exec --stdin --tty POD_NAME -- /bin/bash
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay