我不小心从~/.kube/config中删除了配置文件。由于缺少配置,每个kubectl命令都失败了。
示例:
kubectl get nodes
与服务器localhost:8080的连接被拒绝了-是吗指定正确的主机或端口?
我已经使用安装了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/