目录
系统最低要求
基础准备工作--三台主机
k8s集群安装
在master上安装 calico 网络插件
K8s集群加入node工作节点
k8s集群搭建完成
更改contianerd 运行时容器 为cri-docker
安装helm
helm常用指令
彻底删除calico网络插件
POD命令
namespace命令
ERROR:
cir-docke报错
系统最低要求
内存最少是4G cpu个数最少两个
IP | 内存 | CPU | 主机名 |
192.168.231.120 | 4 | 4 | K1 |
192.168.231.121 | 4 | 4 | K2 |
192.168.231.122 | 4 | 4 | K3 |
基础准备工作--三台主机
关闭防火墙
systemctl stop firewalled
关闭swap 永久关闭
vim /etc/fstab
#/dev/mapper/centos-swap swap swap defaults 0 0
设置主机名称 主机配置文件hosts
hostnamectl set-hostname k1
hostnamectl set-hostname k2
hostnamectl set-hostname k3
vim /etc/hosts
192.168.241.129 k2
192.168.241.128 k1
192.168.241.130 k3
内核参数设置
vim /etc/sysctl.d/k8s.conf
net.bridge.bridge-nf-call-iptables = 1
net.bridge.bridge-nf-call-ip6tables = 1
net.ipv4.ip_forward = 1
sysctl -p
配置同步时间
yum install ntpdate
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
systemctl enable ntpdate
systemctl start ntpdate
systemctl status ntpdate
安装containerd服务 # 如果选择docker 作为运行时容器则不装。文章来源:https://www.toymoban.com/news/detail-808764.html
yum install -y containerd.io-1.6.27
配置IPVS 功能
3台机器操作文章来源地址https://www.toymoban.com/news/detail-808764.html
yum install ipset ipvsadm -y
#配置内核ipvs功能
vim /etc/sysconfig/modules/ipv
到了这里,关于cetos7搭建部署k8s 版本1.28的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!