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
上一篇: 单例模式的几种创建方式
下一篇: 设计模式 —— 单例模式java实例