ToB企服应用市场:ToB评测及商务社交产业平台

标题: 使用 Kubeadm 部署 K8S安装 [打印本页]

作者: 反转基因福娃    时间: 2022-10-14 05:08
标题: 使用 Kubeadm 部署 K8S安装
1. 安装要求

在开始之前,部署Kubernetes集群机器需要满足以下几个条件:
2. 准备环境

角色IPHostNamemaster172.16.3.181k8smasternode1172.16.3.182k8snode1node2172.16.3.183k8snode22.1. 基础配置

[code]# 关闭防火墙[root@localhost ~]# firewall-cmd --state #查看防火墙状态[root@localhost ~]# systemctl stop firewalld     # 停止防火墙的服务[root@localhost ~]# systemctl disable firewalld    # 禁止开机启动# 关闭selinux[root@localhost ~]# setenforce 0  # 临时(当前不用重启)[root@localhost ~]# sed -i 's/enforcing/disabled/' /etc/selinux/config  # 永久(重启后生效)[root@localhost ~]# sestatus -v  # 查看状态(需要重启生效)# 关闭swap[root@localhost ~]# swapoff -a  # 临时[root@localhost ~]# sed -ri 's/.*swap.*/#&/' /etc/fstab    # 永久# 根据规划设置主机名[root@localhost ~]# hostnamectl set-hostname k8smaster  #其它的服务器为 k8snode1,k8snode2# 在master添加hosts[root@localhost ~]# cat >> /etc/hosts  /etc/sysctl.d/k8s.conf  /etc/docker/daemon.json  /etc/yum.repos.d/kubernetes.repo




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4