简体   繁体   English

无法将 Kubectl 上下文更改为我的 Google Kubernetes 集群

[英]Unable to Change Kubectl Context to my Google Kubernetes Cluster

I've created a Google Kubernetes Engine Cluster through the Cloud Console.我已经通过 Cloud Console 创建了一个 Google Kubernetes Engine 集群。 Now I want to connect to it using kubectl from my local machine.现在我想使用本地机器上的kubectl连接到它。 A few weeks ago I used几周前我用过

gcloud container clusters get-credentials cents-ideas --zone europe-west3-a --project cents-ideas

as provided by the Cloud Console.由 Cloud Console 提供。

The output after running this command is:运行此命令后的输出为:

Fetching cluster endpoint and auth data.
kubeconfig entry generated for cents-ideas.

But the cluster is neither in kubectl config get-contexts nor set as kubectl config current-context .但是集群既不在kubectl config get-contexts也不在设置为kubectl config current-context I am confused because this command used to work and did nothing different.我很困惑,因为这个命令曾经可以工作并且没有什么不同。

C


My kubectl version :我的kubectl version

Client Version: version.Info{Major:"1", Minor:"17", GitVersion:"v1.17.2", GitCommit:"59603c6e503c87169aea6106f57b9f242f64df89", GitTreeState:"clean", BuildDate:"2020-01-18T23:30:10Z", GoVersion:"go1.13.5", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"17", GitVersion:"v1.17.2", GitCommit:"59603c6e503c87169aea6106f57b9f242f64df89", GitTreeState:"clean", BuildDate:"2020-01-18T23:22:30Z", GoVersion:"go1.13.5", Compiler:"gc", Platform:"linux/amd64"}

and gcloud versiongcloud version

Google Cloud SDK 278.0.0
alpha 2020.01.24
beta 2020.01.24
bq 2.0.52
core 2020.01.24
gsutil 4.47
kubectl 2020.01.24

cat ~/.kube/config

apiVersion: v1
clusters:
- cluster:
    certificate-authority-data: <LONG HASH>
    server: https://35.234.108.15
  name: gke_cents-ideas_europe-west3-a_cents-ideas
contexts:
- context:
    cluster: gke_cents-ideas_europe-west3-a_cents-ideas
    user: gke_cents-ideas_europe-west3-a_cents-ideas
  name: gke_cents-ideas_europe-west3-a_cents-ideas
current-context: gke_cents-ideas_europe-west3-a_cents-ideas
kind: Config
preferences: {}
users:
- name: gke_cents-ideas_europe-west3-a_cents-ideas
  user:
    auth-provider:
      config:
        access-token: <SOME TOKEN>
        cmd-args: config config-helper --format=json
        cmd-path: /snap/google-cloud-sdk/115/bin/gcloud
        expiry: "2020-02-02T09:45:19Z"
        expiry-key: '{.credential.token_expiry}'
        token-key: '{.credential.access_token}'
      name: gcp

Output of kubectl get nodes kubectl get nodes输出

NAME         STATUS   ROLES    AGE   VERSION
flolubuntu   Ready    <none>   42d   v1.17.2

I had microk8s installed.我安装了microk8s Removing it and instead installing snap install kubectl fixed my issue.删除它并安装snap install kubectl解决了我的问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM