在 CentOS 上使用 kubeadm 安装 kubernetes 1.8.4
准备工作
在所有主机执行以下工作。
配置主机
修改主机名称
1 | $ hostnamectl --static set-hostname k8s-master |
配 hosts
1 | $ echo "172.31.21.226 k8s-master |
关防火墙和 selinux
1 | $ systemctl stop firewalld && systemctl disable firewalld |
1 | $ echo "net.bridge.bridge-nf-call-ip6tables = 1 |
关闭 swap
1 | $ swapoff -a |
永久关闭,注释 swap 相关内容
1 | vim /etc/fstab |