参考文档: https://www.runoob.com/docker/centos-docker-install.html https://blog.csdn.net/iqijun/article/details/106834220 https://www.cnblogs.com/caoxb/p/11243472.html https://blog.csdn.net/u012997470/article/details/109996980 谷粒商城集群部署方案: https://blog.csdn.net/hancoder/article/details/107612802 安装错误的解决:...

参考文档: https://v3-1.docs.kubesphere.io/zh/docs/installing-on-linux/persistent-storage-configurations/install-ceph-csi-rbd/ https://v2-1.docs.kubesphere.io/docs/zh-CN/appendix/ceph-ks-install/ https://blog.csdn.net/qyf158236/article/details/113814906 https://www.cnblogs.com/chimeiwangliang/p/8386353.html...

参考文档: https://v3-1.docs.kubesphere.io/zh/docs/reference/storage-system-installation/glusterfs-server/ https://v3-1.docs.kubesphere.io/zh/docs/installing-on-linux/persistent-storage-configurations/install-glusterfs/ https://blog.csdn.net/qq_40907977/article/details/108776021 安装的主要参考文档:...

参考文档: https://juejin.cn/post/6966067195428208653 https://blog.51cto.com/riverxyz/2527498 https://kubesphere.com.cn/forum/d/1272-kubeadm-k8s-kubesphere-2-1-1 NFS 服务端操作(可按照在任意服务器): 1# 安装nfs 2yum install -y nfs-utils 3 4# 创建nfs目录 5mkdir -p /data/nfs 6 7# 授予权限 8chmod -R 777 /data/nfs 9 10# 编辑export文件 11cat > /etc/exports...

参考文档: https://v2-1.docs.kubesphere.io/docs/zh-CN/appendix/install-openebs/ 1[root@k8s-node1 ~]# kubectl create ns openebs 2namespace/openebs created 3 4[root@k8s-node1 ~]# kubectl apply -f https://openebs.github.io/charts/openebs-operator.yaml 5Warning: resource namespaces/openebs is missing the...

k8s集群安装KubeSphere3.2.1 https://www.cnblogs.com/lfl17718347843/p/14131111.html https://www.cnblogs.com/lfl17718347843/p/14131062.html (主要参考文档) https://v3-1.docs.kubesphere.io/zh/docs/quick-start/minimal-kubesphere-on-k8s/ https://github.com/kubesphere/ks-installer/blob/master/deploy/cluster-configuration.yaml K8S 安装请参考当...

ubuntu 安装 docker apt install docker.io 查询远程镜像: docker search <镜像名> 拉取镜像: docker image pull <镜像名> 查看本地镜像: docker images 删除镜像(确保改镜像下没有相关容器): docker rmi <镜像ID> 查询容器: docker ps -a 启动容器: docker run [参数] <镜像名> 例如: 使用镜像 nginx:latest,以后台模式启动一个容器, 将容器的 80 端口映射到主机的 80 端口,主机的目录 /data 映射到容器的 /data: docker run -p 80:80 -v...

Helm 是 Kubernetes 的包管理器 下载地址:https://get.helm.sh/helm-v3.7.1-linux-amd64.tar.gz Helm 和 Kubernetes 的版本对应关系请查看:https://helm.sh/zh/docs/topics/version_skew/ 下载后解压,并配置环境变量即完成安装。 查看helm版本 1[root@node1 ~]# helm version 2version.BuildInfo{Version:"v3.7.1", GitCommit:"1d11fcb5d3f3bf00dbe6fe31b8412839a96b3dc4",...

文档: https://www.runoob.com/docker/macos-docker-install.html docker 下载地址:https://download.docker.com/mac/stable/Docker.dmg 下载完成后,直接打开安装。 镜像加速 鉴于国内网络问题,后续拉取 Docker 镜像十分缓慢,我们可以配置国内镜像来解决; 修改 ~/.docker/daemon.json 文件,在文件中加入key 为 registry-mirrors 的键值对,如下所示: 1{ 2 "experimental" : false, 3 "features" : { 4 "buildkit" : true 5...

sudo groupadd docker #添加docker用户组 sudo gpasswd -a zhangcong docker #检测用户zhangcong是否已经在docker用户组中,如是当前用户,可以用$USER表示 newgrp docker #更新docker用户组 docker pull bestwu/qq docker run -d –name qq –device /dev/snd –ipc=host -v $HOME/TencentFiles:/TencentFiles -v /tmp/.X11-unix:/tmp/.X11-unix -e XMODIFIERS=@im=ibus -e...