Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 kubeconfig 文件访问 Kubernetes Dashboard,但我不知道如何创建 kubeconfig 文件来访问它。
我可以通过令牌方式访问它,但我也想通过 kubeconfig 文件访问它。
谢谢
当你说你可以通过令牌而不是通过 kubeconfig 访问它时,你能解释一下你的意思吗?Kubeconfigs 只是在其中存储身份验证信息,其中可以包括通过令牌进行的身份验证。假设您的 kubeconfig 文件的其余部分已填充,您只需要修改它,以便您的用户信息包含令牌,如下所示:
users: - name: my-user user: token: <token-here>