已删除 ~/.kube/config

Deleted ~/.kube/config

我不小心从 ~/.kube/config 中删除了配置文件。由于缺少配置,每个 kubectl 命令都会失败。

示例:

kubectl get nodes

The connection to the server localhost:8080 was refused - did you specify the right host or port?

我已经安装了 k3s 使用:

export K3S_KUBECONFIG_MODE="644"
curl -sfL https://get.k3s.io | sh -s - --docker

和 kubectl 使用:

snap install kubectl --classic

有人知道如何解决这个问题吗?

主副本位于 /etc/rancher/k3s/k3s.yaml。因此,将其复制回 ~/.kube/config

cp /etc/rancher/k3s/k3s.yaml ~/.kube/config

参考:https://rancher.com/docs/k3s/latest/en/cluster-access/