安装kubeshpere问题总结

1.要设置好配置文件,要记住master和etcd安装在哪里。

2.要关闭各台机器上的防火墙。

systemctl stop firewalld.service
systemctl disable firewalld.service

3.要把私有镜像的key放到各台机器上。

https://kubesphere.com.cn/forum/d/2240-docker-registry

https://kubesphere.com.cn/forum/d/2034-kubekey-kubesphere-v300

小心文档里面不同一个是kubesphere,应该配置成dockerhub.kubekey.local

安装的docker版本不要太低,同时要在cert目录下运行,注意cert的权限,yum install -y docker-ce-18.06.3.ce

如果docker的push不成功,看看docker logs ***,看看原因

dockerhub.kubekey.local不同ergistry的private-key放在不同的目录,大家要注意了。

yum-config-manager \
    --add-repo \
    https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo

yum install docker-ce docker-ce-cli containerd.io

 mkdir -p  /etc/docker/certs.d/dockerhub.kubekey.local
 scp root@master:/etc/docker/certs.d/dockerhub.kubekey.local/ca.crt /etc/docker/certs.d/dockerhub.kubekey.local/ca.crt

systemctl restart docker

4.突然master的dhcpclient出问题了,申请不了地址,然后就之间console登录,配置静态ip地址

5.不能直接删除节点,需要先运行./kk delete node node1 -f config-sample.yaml

6.安装nfs

https://www.cnblogs.com/Andya/p/14760281.html

https://kubesphere.com.cn/docs/installing-on-linux/persistent-storage-configurations/install-nfs-client/

7.启动新组件

https://www.bookstack.cn/read/kubesphere-3.0-zh/78c913eee5a85fe0.md

clusterconfiguration

 

你可能感兴趣的:(devops,k8s)