上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: 我这里是在之前安装了kubesphere的集群上进行操作的 配置master节点 控制台->平台管理->集群管理->自定义CRD,搜索clusterconfiguration,查看详情,在资源列表中,点击 ks-installer 右侧的图标,然后选择编辑配置文件。 将kubeedge.enable 阅读全文
posted @ 2021-08-28 15:51 请务必优秀 阅读(902) 评论(0) 推荐(0) 编辑
摘要: 安装helm 创建helm文件夹,手动下载helm安装包,放入helm文件夹 tar -zxf helm-v3.2.1-linux-amd64.tar.gz && mv linux-amd64/helm . && rm -rf *linux-amd64* mv helm /usr/local/bin 阅读全文
posted @ 2021-08-25 16:38 请务必优秀 阅读(865) 评论(2) 推荐(0) 编辑
摘要: [root@k8s-master01 ~]# kubectl get cs Warning: v1 ComponentStatus is deprecated in v1.19+ NAME STATUS MESSAGE ERROR controller-manager Unhealthy Get " 阅读全文
posted @ 2021-08-25 14:53 请务必优秀 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 查询etcd相关pod kubectl get pod -n kube-system 进入 kubectl exec -ti etcd-k8s-master01 -n kube-system sh export ETCDCTL_API=3 etcdctl --cacert="/etc/kuberne 阅读全文
posted @ 2021-08-25 10:25 请务必优秀 阅读(612) 评论(0) 推荐(0) 编辑
摘要: 在master01上 生成新token [root@k8s-master01 ~]# kubeadm token create --print-join-command W0825 09:25:49.300571 23457 configset.go:348] WARNING: kubeadm ca 阅读全文
posted @ 2021-08-25 10:22 请务必优秀 阅读(694) 评论(0) 推荐(0) 编辑
摘要: 准备两台有网的Linux虚拟机,将这两台虚拟机添加到前边已经拿KubeKey搭建好的k8s集群 环境准备 yum源配置 curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo yu 阅读全文
posted @ 2021-08-25 00:06 请务必优秀 阅读(797) 评论(0) 推荐(0) 编辑
摘要: 准备一台有网的Linux虚拟机 环境准备 yum源配置 curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo yum install -y yum-utils device-ma 阅读全文
posted @ 2021-08-24 22:46 请务必优秀 阅读(610) 评论(0) 推荐(0) 编辑
摘要: 通过阅读 Redis 源码,可以学习和掌握到的计算机系统设计思想 根据 Redis 不同的功能特性,分线条学习每个功能特性上涉及的关键技术和设计思想 对于Redis的代码架构,需要掌握以下两类内容 代码的目录结构和作用划分,目的是理解 Redis 代码的整体架构,以及所包含的代码功能类别; 系统功能 阅读全文
posted @ 2021-08-22 22:51 请务必优秀 阅读(1284) 评论(0) 推荐(0) 编辑
摘要: 开篇点题,用一个最形象的比喻:云计算系统的操作系统是k8s,容器就相当于是其进程,而Pod则是进程组。 容器跟虚拟机不能相提并论,无论是从具体的实现原理,还是从使用方法、特性、功能等方面,容器与虚拟机几乎没有任何相似的地方;也不存在一种普遍的方法,能够把虚拟机里的应用无缝迁移到容器中。因为,容器的性 阅读全文
posted @ 2021-08-21 22:58 请务必优秀 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 创建nginx-deployment.yaml,意思为创建2个pod,每个pod里的nginx版本为1.7.9,容器监听端口(containerPort)是 80 apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deploymen 阅读全文
posted @ 2021-08-21 17:42 请务必优秀 阅读(492) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页