创建多节点 k8s 集群

03-31 1043阅读

创建多节点 k8s 集群

主机IP系统
master192.168.2.15ubuntu20.04 x64 2C 4G
Worker1192.168.2.16ubuntu20.04 x64 2C 4G
Worker1192.168.2.18ubuntu20.04 x64 2C 4G

使用 iterm2 连接四台服务器 command + shift + i 同时操作

  1. 初始化配置

    关闭防火墙

    systemctl stop firewalld
    systemctl disable firewalld
    

    关闭selinux

    sed -i 's/enforcing/disabled/' /etc/selinux/config  # 永久
    setenforce 0  # 临时
    

    关闭swap

    swapoff -a  # 临时
    sed -ri 's/.*swap.*/#&/' /etc/fstab    # 永久
    

    根据规划分别设置主机名

    hostnamectl set-hostname 
    master1、worker1、worker2
    

    在master添加hosts

    cat >> /etc/hosts  EOF
    

    将桥接的 IPv4 流量传递到 iptables 的链

    cat > /etc/sysctl.d/k8s.conf 
      "registry-mirrors": ["https://b9pmyelo.mirror.aliyuncs.com"],
      "exec-opts": ["native.cgroupdriver=systemd"]
    }
    systemctl restart docker
    docker info   #查看docker信息,进行确认
    # 添加软件源:
    cat  /etc/yum.repos.d/kubernetes.repo 
VPS购买请点击我

文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

目录[+]