DEV Community

Agik Setiawan
Agik Setiawan

Posted on

4 2

Update config location in kubectl Kubernetes in Linux

Create file in ~/.bashrc.d/kubectl.config

export KUBECONFIG=YOUR_CUSTOM_LOCATION_CONFIG_PATH:${KUBECONFIG:-$HOME/.kube/config}
Enter fullscreen mode Exit fullscreen mode

after create file like above, open terminal and input command

source ~/.bashrc
Enter fullscreen mode Exit fullscreen mode

for check config is works you can use command

kubectl get pod
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