Kubernetes快速部署
安装要求
在开始之前,部署Kubernetes集群机器需要满⾜以下⼏个条件:
- ⾄少3台机器,操作系统 CentOS7+
- 硬件配置:2GB或更多RAM,2个CPU或更多CPU,硬盘20GB或更多
- 集群中所有机器之间⽹络互通
- 可以访问外⽹,需要拉取镜像
- 禁⽌swap分区
####准备环境
角色 | ip |
---|---|
master | 192.168.31.140 |
node1 | 192.168.31.130 |
node2 | 192.168.31.138 |
master上
关闭防⽕墙:
[root@localhost ~]# systemctl disable --now firewalld
关闭selinux:
[root@localhost ~]# sed -i 's/enforcing/disabled/' /etc/selinux/config # 永久
关闭swap:
[root@localhost ~]# vim /etc/fstab
注释掉swap分区那一条
设置主机名:
[root@localhost ~]# hostnamectl set-hostname master.example.com
[root@localhost ~]# bash
node1上
//关闭防⽕墙:
[root@localhost ~]# systemctl disable --now firewalld
//关闭selinux:
[root@localhost ~]# sed -i 's/enforcing/disabled/' /etc/selinux/config # 永久
关闭swap:
[root@localhost ~]# vim /etc/fstab
注释掉swap分区那一条
设置主机名:
[root@localhost ~]# hostnamectl set-hostname node1.example.com
[root@localhost ~]# bash
node2上
关闭防⽕墙:
[root@localhost ~]# systemctl disable --now firewalld
关闭selinux:
[root@localhost ~]# sed -i 's/enforcing/disabled/' /etc/selinux/config # 永久
关闭swap:
[root@localhost ~]# vim /etc/fstab
注释掉swap分区那一条
设置主机名:
[root@localhost ~]# hostnamectl set-hostname node2.example.com
[root@localhost ~]# bash
#master上
添加hosts
[root@mas