5

在 GKE 中升级我的集群后,仪表板将不再接受证书身份验证。

没问题,我的同事说 .kube/config 中有一个可用的令牌

  user:
    auth-provider:
      config:
        access-token: REDACTED
        cmd-args: config config-helper --format=json
        cmd-path: /home/user/workspace/google-cloud-sdk/bin/gcloud
        expiry: 2018-01-09T08:59:18Z
        expiry-key: '{.credential.token_expiry}'
        token-key: '{.credential.access_token}'
      name: gcp

除了在我的情况下没有...

  user:
    auth-provider:
      config:
        cmd-args: config config-helper --format=json
        cmd-path: /home/user/Dev/google-cloud-sdk/bin/gcloud
        expiry-key: '{.credential.token_expiry}'
        token-key: '{.credential.access_token}'
      name: gcp

我尝试使用 gcloud 重新进行身份验证,与同事比较 gcloud 设置,更新 gcloud,重新安装 gcloud,检查 Cloud Platform 中的权限。几乎我能想到的所有东西,仍然不会生成访问令牌。

有人可以帮忙吗?!

 $ gcloud container clusters get-credentials cluster-3 --zone xxx --project xxx                            
Fetching cluster endpoint and auth data.
kubeconfig entry generated for cluster-3.

$ gcloud config list                                                                                                    
[core]
account = xxx
disable_usage_reporting = False
project = xxx

Your active configuration is: [default]

$ kubectl version                                                                                                                    
Client Version: version.Info{Major:"1", Minor:"8", GitVersion:"v1.8.4"
4

2 回答 2

7

好的,非常烦人和愚蠢的答案 - 您必须使用 kubectl 发出任何请求才能生成令牌并将其保存到 kubeconfig 文件中。

于 2018-01-10T07:36:01.997 回答
0

您提到您“在 GKE 中更新了您的集群” - 我确定您实际做了什么,所以我将其解释为生成一个新集群。有两件事要确保您似乎没有在问题陈述中涵盖 - 一是启用了 kubectl,二是您实际上可以生成一个新的 kubeconfig 文件(您可以很容易地引用旧的 ~/.kube /conf 来自 GKE 中更新前的集群)。因此,执行这些命令可确保您具有所需的正确身份验证并且该令牌应该可用:
$ gcloud components install kubectl $ gcloud container clusters create <cluster-name> $ gcloud container clusters get-credentials <cluster-name>

然后...生成 kubeconfig 文件(假设您在 GCP 上有一个正在运行的集群,并且为 project/GKE 配置了一个服务帐户,已经运行kubectl proxy等):
$ gcloud container clusters get-credentials <cluster_id>

这将创建一个 ${HOME}/.kube/config 文件,其中包含令牌。检查配置文件,您将看到令牌值:
$ cat ~/.kube/config
或者
$ kubectl config view将其显示到屏幕上...

... users: - name: gke_<project_id><zone><cluster_id> user: auth-provider: config: access-token: **<COPY_THIS_TOKEN>** cmd-args: config config-helper --format=json cmd-path: ...path-to.../google-cloud-sdk/bin/gcloud expiry: 2018-04-13T23:11:15Z expiry-key: '{.credential.token_expiry}' token-key: '{.credential.access_token}' name: gcp

复制该令牌后,返回http://localhost:8001/并选择“令牌”,然后将令牌值粘贴到那里......很好

于 2018-04-13T22:31:51.690 回答