准备环境
k8s-master 1.1.0.10
k8s-node1 1.1.0.11
k8s-node2 1.1.1.11
操作系统环境准备
- 修改hostname
hostnamectl set-hostname <k8s-master/k8s-node1/k8s-node2> - 添加主机映射
cat <<EOF >> /etc/hosts
1.1.0.10 k8s-master
1.1.0.11 k8s-node1
1.1.1.11 k8s-node2
EOF - 停用防火墙
ufw disable - 关闭交换分区
swapoff -a
sed -i 's/.swap./#&/' /etc/fstab - 允许 iptables 检查桥接流量
modprobe br_netfilter
cat <<EOF > /etc/sysctl.d/k8s.conf
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
EOF
sudo sysctl --system
网友评论