Kubernetes初始化

本文介绍了Kubernetes的快速部署步骤,包括安装要求和详细过程。首先,确保至少3台CentOS7+的机器,满足硬件配置,并实现网络互通。接着,安装Docker、kubeadm和kubelet。最后,在指定Master节点上执行部署操作。
摘要由CSDN通过智能技术生成

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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值