例如,我有两个名称空间k8s-app1和k8s-app2

我可以使用下面的命令列出来自特定名称空间的所有pod

kubectl get pods -n <namespace>

我们需要将namespace附加到所有命令中,以列出来自各自名称空间的对象。是否有一种方法可以设置特定的名称空间和列表对象而不显式地包括名称空间?


当前回答

Kubie可以切换上下文和名称空间。 如果您安装了FZF,体验将大大改善。

kubie ctx show the list of available contexts (if fzf is installed, display a selectable menu of contexts) kubie ctx <context> switch the current shell to the given context (spawns a shell if not a kubie shell) kubie ctx - switch back to the previous context kubie ctx <context> -r spawn a recursive shell in the given context kubie ctx <context> -n <namespace> spawn a shell in the given context and namespace kubie ns show the list of available namespaces (if fzf is installed, display a selectable menu of namespaces) kubie ns <namespace> switch the current shell to the given namespace kubie ns - switch back to the previous namespace kubie ns <namespace> -r spawn a recursive shell in the given namespace

其他回答

我希望我的回答简明扼要,并参考官方文件:

答:

kubectl config set-context --current --namespace=my-namespace

来自:

https://kubernetes.io/docs/reference/kubectl/cheatsheet/

# permanently save the namespace for all subsequent kubectl commands in that context.
kubectl config set-context --current --namespace=ggckad-s2

我在.zshrc中创建了一个函数

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

然后我调用ksns默认

您可以使用以下名为kubectx的包,它可以很容易地在使用kubectx的集群之间切换

以及使用kubens在名称空间之间切换

看看https://krew.sigs.k8s.io/他们有很多不同用例的插件。

安装 https://krew.sigs.k8s.io/docs/user-guide/setup/install/

kubectl krew install kubens

然后运行以下命令将为您设置当前上下文

kubens <namespace> 

有以下几种选择:

仅使用kubectl命令切换命名空间::

kubectl config set-context --current --namespace=<namespace>

或者,创建一个定义了namespace的新上下文:

kubectl config set-context gce-dev --user=cluster-admin --namespace=dev
kubectl config use-context gce-dev

或者,使用插件,如kubectx和kubens,下面的命令将上下文切换到kube-system:

$ kubens kube-system 

或者,另一个我喜欢的不安装第三方工具的简单替代方案是使用bash别名(linux)。

$ alias kubens='kubectl config set-context --current --namespace '
$ alias kubectx='kubectl config use-context '

// Usage
$ kubens kube-system    //Switch to a different namespace
$ kubectx docker        //Switch to separate context