Kubernetes1.30搭建教程
一、准备工作
1、修改主机名(三个节点)
1 | hostnamectl set-hostname k8s-master-1 |
2、添加host解析(三个节点)
1 | cat >> /etc/hosts << "EOF" |
3、关闭一些不要的服务(三台节点)
1、关闭selinux
1 | sed -i 's#enforcing#disabled#g' /etc/selinux/config |
2、禁用防火墙,网络管理,邮箱
1 | systemctl disable --now firewalld NetworkManager postfix |
3、关闭swap分区
1 | swapoff -a |
注释swap分区
1 | cp /etc/fstab /etc/fstab_bak |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Popcell 's Blog!
评论



