kubeadm安装k8s(centos)
kubeadm安装k8s(centos7)
一、环境准备
1、准备了三台虚拟机,配置是2核4G,40G硬盘,分配IP主机如下(关闭防火墙和selinux)
ip主机名作用172.16.0.10masterk8s主节点172.16.0.21node1k8s从节点1172.16.0.22node2k8s从节点2
#所有节点操作:
#关闭防火墙
systemctl stop firewalld.service
#禁用selinux
setenforce 0
sed -i 's/^SELINUX=enforcing$/SELINUX=permissive/' /etc/selinux/config
2、域名解析
#所有节点操作:
vim /etc/hosts
#添加
172.16.0.10 master
172.16.0.21 node1
172.16.0.22 node2
3、时间同步
#
共有 0 条评论