看了我的文章,搭建这个贼简单!!!下面,我们我给大家操作一波吧。小白文,吐槽无效。
第一步,服务器基本要求:
- 1 核 2 G (已经很低很低要求了吧)
- 系统linux,常见的(centos7, debian 9, 【ubuntu 没用过啊】)
- 跟着我的步骤来:我们选用 debian 9
第二步,装个docker:
先给系统换换源,编辑 sources.list 将文件内容替换为一下内容
vim /etc/apt/sources.list
deb http://mirrors.aliyun.com/debian stretch main contrib non-free
deb http://mirrors.aliyun.com/debian stretch-updates main contrib non-free
deb http://mirrors.aliyun.com/debian-security stretch/updates main
deb-src http://mirrors.aliyun.com/debian stretch main contrib non-free
deb-src http://mirrors.aliyun.com/debian stretch-updates main contrib non-free
deb-src http://mirrors.aliyun.com/debian-security stretch/updates main
deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/debian stretch stable
更新现有的包列表:
sudo apt update
接下来,安装一些允许apt使用包通过HTTPS的必备软件包:
sudo apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common locales-all
然后将官方Docker存储库的GPG密钥添加到您的系统:
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
再更新一下
sudo apt update
安装我们的主角 docker
sudo apt install docker-ce
启动它,并设置开机启动
sudo systemctl status docker
sudo systemctl enable docker
装完就没了?还有,我们给 docker 换换源,编辑 daemon.json 文件
vim /etc/docker/daemon.json
替换为如下内容,阿里云的源是我自己的
{
"registry-mirrors": [
"http://hub-mirror.c.163.com",
"https://xxxx.mirror.aliyuncs.com"
]
}
配置自己的阿里云加速镜像,登录阿里云,搜索 容器镜像服务 => 控制台 => 镜像加速器
第三步,我们装个 rancher 2.x 最新的就对了
先提供下官方的安装文档
https://rancher2.docs.rancher.cn/docs/rancher2/installation/other-installation-methods/single-node-docker/_index
下面是我的安装方法:(不要问,撸就是了)
docker run -d --restart=unless-stopped -p 8080:80 -p 8443:443 -v /var/lib/rancher:/var/lib/rancher rancher/rancher:latest
等个几分钟,rancher 安装完成后,就用你的服务器ip 加端口去访问吧
例如:https://ip:8443
初始化密码就不用我教了吧
我们看到的首页如下,现在配置下k3s需要的命令吧
点击添加集群
然后,选择导入
随便输入一个名字,我们就创建吧
保存最后一个命令,看提示都知道问什么啦。(还不知道的不要问,撸就对了)
第四步,我们装下 k3s (最简单的一步)
贴下文档先,官方是这样的
https://docs.rancher.cn/k3s/installation/install-options.html
跟着我,就直接撸
curl -sfL https://docs.rancher.cn/k3s/k3s-install.sh | INSTALL_K3S_MIRROR=cn sh -
静静等待他安装完成吧
安装完成后,我们简单配置下,编辑 k3s.service 文件
vim /etc/systemd/system/multi-user.target.wants/k3s.service
在这里我们需要修改ExecStart的值,将其修改为:
/usr/local/bin/k3s server --docker --no-deploy traefik
修改后如下:
然后,重启下 k3s,执行以下两条命令
systemctl daemon-reload
service k3s restart
我们看看 k3s 的状态先
k3s kubectl get node
等他的状态是 Ready,我们的k3s 就配置好了
接下来,我们执行下,刚才保存的命令。
请执行自己保存的命令!!!
请执行自己保存的命令!!!
请执行自己保存的命令!!!
命令找不到了,回到rancher 的控制面板,点击编辑即可看到了
curl --insecure -sfL https://xxx.xxx.xxx.xxx:8443/v3/import/gdmx2q29q6sh7jfc97r47rlf8qpb7qg8kbpdq6q72rwxrjcpldrwx9.yaml | kubectl apply -f -
执行完可以看到下面这个,如果不是这个,那就多执行几次