英文:
How to get the current context name using Kubernetes client
问题
我正在尝试通过获取当前上下文名称来访问当前集群名称。
所以我想知道如何使用"sigs.k8s.io/controller-runtime/pkg/client"提供的客户端来获取当前上下文名称。
英文:
I'm trying to access the current cluster name by getting the current context name.
So I wanted to know how to get the current context name using client provided by: "sigs.k8s.io/controller-runtime/pkg/client"
答案1
得分: 1
kubectl cluster-info
命令输出的集群名称仅存储在本地的kubeconfig文件中,它不是API的一部分。因此,您无法使用客户端获取集群名称。
英文:
The cluster name output by the kubectl cluster-info
command is only stored in the local kubeconfig file, it is not part of an API. So, you can not get the cluster name by using the client.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论