虚拟机使用minikube搭建k8s集群

打印 上一主题 下一主题

主题 977|帖子 977|积分 2931

一、安装docker(目前登录的是root用户)

1、下载 https://download.docker.com/linux/centos/7/x86_64/stable/Packages/

本次使用 20.10.9版本
2、解压
  1. tar xfz docker-20.10.9.tgz
复制代码
3、复制到 /usr/bin
  1. cp -rf docker/* /usr/bin/
复制代码
4、将docker注册为系统服务
  1. vi /usr/lib/systemd/system/docker.service
复制代码
写入内容
点击查看内容
  1. [Unit]
  2. Description=Docker Application Container Engine
  3. Documentation=https://docs.docker.com
  4. After=network-online.target firewalld.service
  5. Wants=network-online.target
  6. [Service]
  7. Type=notify
  8. # the default is not to use systemd for cgroups because the delegate issues still
  9. # exists and systemd currently does not support the cgroup feature set required
  10. # for containers run by do cker
  11. ExecStart=/usr/bin/dockerd
  12. ExecReload=/bin/kill -s HUP $MAINPID
  13. # Having non-zero Limit*s causes performance problems due to accounting overhead
  14. # in the kernel. We recommend using cgroups to do container-local accounting.
  15. LimitNOFILE=infinity
  16. LimitNPROC=infinity
  17. LimitCORE=infinity
  18. # Uncomment TasksMax if your systemd version supports it.
  19. # Only systemd 226 and above support this version.
  20. #TasksMax=infinity
  21. TimeoutStartSec=0
  22. # set delegate yes so that systemd does not reset the cgroups of docker containers
  23. Delegate=yes
  24. # kill only the docker process, not all processes in the cgroup
  25. KillMode=process
  26. # restart the docker process if it exits prematurely
  27. Restart=onfailure
  28. StartLimitBurst=3
  29. StartLimitInterval=60s
  30. [Install]
  31. WantedBy=multi-user.target
复制代码
保存
5、添加文件权限
  1. chmod u+x /usr/lib/systemd/system/docker.service
复制代码
6、重载unit配置文件
  1. systemctl daemon-reload
复制代码
7、启动docker
  1. systemctl enable docker
复制代码
8、查看docker状态
  1. systemctl status docker
复制代码
二、安装kubectl v1.30.0

1、新建用户
  1. useradd kube
复制代码
2、给予权限
  1. vi /etc/sudoers
复制代码
在这两行下面
  1. ## Allow root to run any commands anywhere
  2. root    ALL=(ALL)       ALL
复制代码
添加内容
  1. kube     ALL=(ALL)       NOPASSWD:ALL
复制代码
保存,这里必要强制保存 wq!
3、切换用户
  1. su kube
复制代码
接下来所有操纵都是kube用户
4、新建组docker,kube用户加入docker组
  1. sudo groupadd docker
  2. sudo usermod -aG docker $USER && newgrp docker
复制代码
5、下载
  1. curl -LO https://dl.k8s.io/release/v1.30.0/bin/linux/amd64/kubectl
复制代码
6、安装 kubectl
  1. sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
复制代码
7、测试是否安装成功
  1. kubectl version --client
复制代码
三、安装minikube

1、下载(如果不能下载去阿里云下载)
  1. curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
复制代码
2、安装
  1. sudo install minikube-linux-amd64 /usr/local/bin/minikube && rm minikube-linux-amd64
复制代码
3、测试是否安装成功
  1. minikube version
复制代码
4、启动
  1. minikube start
复制代码
启动过程大抵如下,会自动拉取镜像


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

石小疯

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表