Kubeadm 搭建k8s

金鞍玉勒寻芳客,未信我庐别有春。这篇文章主要讲述Kubeadm 搭建k8s相关的知识,希望能为你提供帮助。
?一、准备?

??master(2C/4G,cpu核心数要求大于2)   192.168.19.10   docker、kubeadm、kubelet、kubectl、flannel??
???node01(2C/2G)       192.168.19.11     docker、kubeadm、kubelet、kubectl、flannel???
node02(2C/2G)       192.168.19.17     docker、kubeadm、kubelet、kubectl、flannel??
?Harbor节点(hub.kgc.com)     192.168.19.18   docker、docker-compose、harbor-offline-v1.2.2?
  1. ??在所有节点上安装Docker和kubeadm??
  2. ??部署Kubernetes Master??
  3. ??部署容器网络插件??
  4. ??部署 Kubernetes Node,将节点加入Kubernetes集群??
  5. ??部署 Dashboard Web 页面,可视化查看Kubernetes资源??
  6. ??部署 Harbor 私有仓库,存放镜像资源?
//所有节点,关闭防火墙规则,关闭selinux,关闭swap交换
systemctl stop firewalld
systemctl disable firewalld
setenforce 0
sed -i s/enforcing/disabled/ /etc/selinux/config
iptables -F & & iptables -t nat -F & & iptables -t mangle -F & & iptables -X
swapoff -a
sed -ri s/.*swap.*/#& / /etc/fstab#交换分区必须要关闭
#加载 ip_vs 模块
for i in $(ls /usr/lib/modules/$(uname -r)/kernel/net/netfilter/ipvs|grep -o "^[^.]*"); do echo $i; /sbin/modinfo -F filename $i > /dev/null 2> & 1 & & /sbin/modprobe $i; done

//修改主机名
hostnamectl set-hostname master
hostnamectl set-hostname node01
hostnamectl set-hostname node02

//所有节点修改hosts文件
cat > > /etc/hosts < < EOF
192.168.132.50 master01
192.168.132.51 node01
192.168.132.52 node02
EOF

//调整内核参数
cat > /etc/sysctl.d/kubernetes.conf < < EOF
net.bridge.bridge-nf-call-ip6tables=1#开启网桥模式,可将网桥的流量传递给iptables链
net.bridge.bridge-nf-call-iptables=1
net.ipv6.conf.all.disable_ipv6=1#关闭ipv6协议
net.ipv4.ip_forward=1
EOF

//生效参数
sysctl --system



所有节点安装docker
-------------------- 所有节点安装docker --------------------
如果之前配置的是本地源 那么就把配置的本地源文件拖出来重新更新yum缓存
cd /etc/yum.repos.d/bak/
mv *.repo /etc/yum.repos.d/
yum clean all & & yum makecache

yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum install -y docker-ce docker-ce-cli containerd.io

mkdir /etc/docker
cat > /etc/docker/daemon.json < < EOF

"registry-mirrors": ["https://6ijb8ubo.mirror.aliyuncs.com"],
"exec-opts": ["native.cgroupdriver=systemd"],
"log-driver": "json-file",
"log-opts":
"max-size": "100m"


EOF
#使用Systemd管理的Cgroup来进行资源控制与管理,因为相对Cgroupfs而言,Systemd限制CPU、内存等资源更加简单和成熟稳定。
#日志使用json-file格式类型存储,大小为100M,保存在/var/log/containers目录下,方便ELK等日志系统收集和管理日志。

systemctl daemon-reload
systemctl restart docker.service
systemctl enable docker.service

docker info | grep "Cgroup Driver"查看


【Kubeadm 搭建k8s】

二、所有节点安装kubeadm,kubelet和kubectl
//定义kubernetes源

    推荐阅读