1、环境准备
CentOS 7.6 两台配置如下,自己更改主机名,加入hosts, master和node 名字不能一样
# hostname master # hostnamectl set-hostname master # hostnamectl set-hostname node01 # hostname node01 vim /etc/hosts 172.21.0.10 master 172.21.0.14 node01
2、关闭防火墙,SELINUX
#防火墙 systemctl stop firewalld systemctl disable firewalld systemctl status firewalld #selinux setenforce 0 [root@master ~]# cat /etc/sysconfig/selinux |egrep SELINUX=|egrep -v '#' SELINUX=disabled
3、取消swap挂载
#我的主机没有,有的话/etc/fstab 文件注释掉 swapoff -a
4、创建/etc/sysctl.d/k8s.conf文件,添加如下内容
vi /etc/sysctl.d/k8s.conf net.bridge.bridge-nf-call-ip6tables = 1 net.bridge.bridge-nf-call-iptables = 1 net.ipv4.ip_forward = 1 vm.swappiness=0 #生效 modprobe br_netfilter sysctl -p /etc/sysctl.d/k8s.conf
5、kube-proxy开启ipvs的前置条件
#保证在节点重启后能自动加载所需模块 [root@master ~]# cat > /etc/sysconfig/modules/ipvs.modules <<EOF #!/bin/bash modprobe -- ip_vs modprobe -- ip_vs_rr modprobe -- ip_vs_wrr modprobe -- ip_vs_sh modprobe -- nf_conntrack_ipv4 EOF [root@master ~]# chmod 755 /etc/sysconfig/modules/ipvs.modules && bash /etc/sysconfig/modules/ipvs.modules && lsmod | grep -e ip_vs -e nf_conntrack_ipv4 #查看是否已经正确加载所需的内核模块 [root@master ~]# lsmod | grep -e ip_vs -e nf_conntrack_ipv4 #安装了ipset软件包 [root@master ~]# yum install ipset #为了便于查看ipvs的代理规则,安装管理工具ipvsadm [root@master ~]# yum install ipvsadm
6、安装Docker看前面的博客吧
这里我安装版本 18.06
yum install -y --setopt=obsoletes=0 docker-ce-18.06.1.ce-3.el7
6.1、确认一下iptables filter表中FOWARD链的默认策略(pllicy)为ACCEPT(看网友说的,直接cope图片了)
#如果不是ACCEPT,则修改 iptables -P FORWARD ACCEPT