How to switch namespace in kubernetes

前端 未结 7 1407
半阙折子戏
半阙折子戏 2021-01-30 02:42

Say, I have two namespaces k8s-app1 and k8s-app2

I can list all pods from specific namespace using the below command

kubectl get pods -n 

        
相关标签:
7条回答
  • 2021-01-30 03:28

    I created a function in .zshrc

    ksns() { kubectl config set-context --current --namespace="$1" }
    

    Then I call ksns default

    0 讨论(0)
提交回复
热议问题