一台是阿里云,一台是腾讯云,一台是华为云,一台是百度云等多种公有云混合安装K8S集群

1. 修改主机名称和添加hosts

bash 复制代码
#永久修改主机名
hostnamectl set-hostname  master  && bash     #在master01上操作,阿里云服务器
hostnamectl set-hostname  worker1   && bash   #在node01上操作,阿里腾讯云服务器
hostnamectl set-hostname  worker2   && bash   #在node02上操作,华为云服务器
bash 复制代码
cat >> /etc/hosts << EOF
202.168.216.25    master
198.201.73.25    worker1
49.58.173.125    worker2
EOF

2.系统优化

bash 复制代码
#时间同步:
yum install epel-release  -y
yum install ntpdate -y
ntpdate time.windows.com
bash 复制代码
#修改内核参数
cat > /etc/sysctl.d/k8s.conf <<EOF
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
net.ipv4.ip_forward = 1
EOF

cat >>  /etc/sysctl.d/k8s.conf << EOF
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
EOF

modprobe br_netfilter #加载br_netfilter模块
lsmod |grep br_netfilter #验证模块是否加载成功
sysctl -p /etc/sysctl.d/k8s.conf  #使刚才修改的内核参数生效
bash 复制代码
systemctl stop firewalld # 关闭
systemctl disable firewalld # 禁止开机启动防火墙
sed -i 's/enforcing/disabled/' /etc/selinux/config # 永久
setenforce 0 # 临时
bash 复制代码
yum install -y yum-utils device-mapper-persistent-data lvm2 wget curl

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://download.docker.com/linux/centos/docker-ce.repo
    

#yum list docker-ce --showduplicates | sort -r #查看yum仓库中可以安装的docker版本
#yum -y install docker-ce-18.06.1.ce-3.el7 #安装指定的版本
yum -y install docker-ce docker-ce-cli containerd.io #安装最新docker
systemctl enable docker
systemctl start docker
docker --version

cat > /etc/docker/daemon.json << EOF
{
  "registry-mirrors": ["https://qj799ren.mirror.aliyuncs.com","https://4c99aa72f1a643edb02b13b93fec6a17.mirror.swr.myhuaweicloud.com"],
  "insecure-registries": ["0.0.0.0/0"],
  "exec-opts": ["native.cgroupdriver=systemd"],
  "log-driver": "json-file",
  "log-opts": {
    "max-size": "100m"
  },
  "storage-driver": "overlay2"
}
EOF
systemctl restart docker
systemctl status docker

3.rancher安装

bash 复制代码
#在master01上操作,阿里云服务器上安装rancher
docker run -d --name rancher_server --restart=unless-stopped --privileged   -p 8080:80 -p 8443:443 -v /rancher/rancher:/var/lib/rancher    rancher/rancher:v2.4.17 

浏览器访问 https://202.168.216.25:8443

4. 参考博客第5步以后继续操作

点击阅读

相关推荐
小闫BI设源码7 小时前
uniapp使用腾讯云获取位置转为省市区
uni-app·云计算·腾讯云
流着口水看上帝1 天前
华为云开发的入门介绍
华为云
九河云1 天前
华为云国内版与国际版的差异
大数据·服务器·华为云
DS小龙哥1 天前
基于STM32设计的智能桌面暖风机(华为云IOT)
stm32·物联网·华为云
智哪儿1 天前
AI加持,华为全屋智能品牌升级为“鸿蒙智家”
华为云·智能家居
黄昏_2 天前
在Springboot项目中实现将文件上传至阿里云 OSS
java·spring boot·后端·阿里云
菊风 Juphoon2 天前
菊风视频能力平台开发服务正式入驻华为云云商店,成为华为云联营联运合作伙伴
华为云·音视频
壹只菜鸟2 天前
阿里云整理(一)
阿里云·云计算
HaoHao_0102 天前
阿里云快照:数据保护与恢复的重要工具
数据库·阿里云·云计算
九河云3 天前
分布式数据库中间件可以用在哪些场景呢
数据库·分布式·中间件·华为云