当前位置: 首页 > article >正文

Centos7搭建k8s集群

k8s集群节点

192.168.128.160   k8s-master

192.168.128.161    k8s-node1

192.168.128.162   k8s-node2

1.先搭建master节点

# 在所有节点上禁用swap
sudo swapoff -a
sudo sed -i 's/.*swap.*/#&/' /etc/fstab

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

# 在所有节点上禁用防火墙

systemctl stop firewalld
systemctl disable firewalld

#下载aliyun源

mv /etc/yum.repos.d/* /tmp

curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

设置时区与时间同步

ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

yum install dnf ntpdate -y

dnf makecache ntpdate

ntp.aliyun.com


ntpdate time.windows.com

# 将桥接的IPv4流量传递到iptables的链
cat > /etc/sysctl.d/k8s.conf << EOF
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
EOF

sysctl --system  # 生效


 

#下载docker源


wget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repo

或者

yum-config-manager     --add-repo     https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo

或者

yum-config-manager     --add-repo     https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo


 

#添加阿里云k8s软件源
cat > /etc/yum.repos.d/kubernetes.repo << EOF
[kubernetes]
name=Kubernetes
baseurl=https://mirrors.aliyun.com/kubernetes/yum/repos/kubernetes-el7-x86_64
enabled=1
gpgcheck=0
repo_gpgcheck=0
gpgkey=https://mirrors.aliyun.com/kubernetes/yum/doc/yum-key.gpg https://mirrors.aliyun.com/kubernetes/yum/doc/rpm-package-key.gpg
EOF

#清理yum缓存,生成缓存

yum clean all

yum makecache


 
 

#在master节点执行
hostnamectl set-hostname
k8s-master


#在node1节点执行
hostnamectl set-hostname k8s-node1


#在node2节点执行
hostnamectl set-hostname k8s-node2

# 编辑文件,以EOF作为结束符

cat >>/etc/hosts <<EOF

# 写入文件内容

192.168.128.160  k8s-master

192.168.128.161  k8s-node1

192.168.128.162  k8s-node2

EOF

修改网络配置文件

/etc/sysconfig/network-scripts/ifcfg-ens33

TYPE="Ethernet"
PROXY_METHOD="none"
BROWSER_ONLY="no"
BOOTPROTO="static"
DEFROUTE=


http://www.kler.cn/a/378351.html

相关文章:

  • vue系列==vue路由
  • 【c++日常刷题】两个数字的交集、点击消除、最小花费爬楼梯
  • Go 语言之搭建通用 Web 项目开发脚手架
  • TDengine数据备份与恢复
  • sass @mixin @extend
  • 彻底理解链表(LinkedList)结构
  • 光学基础知识(3)光的干涉
  • [FE] React 初窥门径(四):React 组件的加载过程(render 阶段)
  • 命令解释符--shell
  • Linux - grep的正则用法
  • 新视野大学英语读写教程1第四版PDF+答案+听力音频
  • react使用Fullcalendar
  • 在 openEuler 22.03 服务器上搭建 web 服务教程
  • 2024年11月3日练习(滑动窗口算法)
  • AlDente Pro - MacBook 电池健康管理工具
  • JAVA 插入 JSON 对象到 PostgreSQL
  • 推荐一款用来快速开发3D建筑模型软件:Allplan
  • 【刷题14】哈希表专题
  • OpenAI 的 Whisper:盛名之下,其实难副?
  • ROS2入门学习——ROS在机器人中的运行
  • C++:哈希表
  • 浅谈路由器
  • 前端路由如何从0开始配置?vue-router 的使用
  • 力扣算法笔记 —— 等差数列
  • Android——动态注册广播
  • 15.useIntersectionObserver