欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

k8s学习()之K8S中遇到的各种问题

程序员文章站 2022-07-14 09:25:03
...

k8s node节点无法执行kubectl命令

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

# 1.在master节点复制admin.conf到从节点相同位置
scp /etc/kubernetes/admin.conf [email protected]:/etc/kubernetes/
# 2. export 环境变量
echo "export KUBECONFIG=/etc/kubernetes/admin.conf" >> ~/.bash_profile
# 3. 使其生效
source ~/.bash_profile