赞
踩
Sealos 是一个基于 Kubernetes 内核的云操作系统发行版。它采用云原生方式,摒弃传统的云计算架构,转向以 Kubernetes 为云内核的新架构。这使得企业可以像使用个人计算机一样毫不费力地使用云。
Sealos的功能
Sealos的优点
环境准备:
主机名 | 内网Ip | 外网IP |
---|---|---|
master | 192.168.66.2 | 139.198.30.172 |
node1 | 192.168.66.3 | 139.198.43.205 |
node2 | 192.168.66.4 | 139.198.31.223 |
#各个机器设置自己的域名 hostnamectl set-hostname master hostnamectl set-hostname node1 hostnamectl set-hostname node2 # 将 SELinux 设置为 permissive 模式(相当于将其禁用) setenforce 0 sed -i 's/^SELINUX=enforcing$/SELINUX=permissive/' /etc/selinux/config #关闭swap swapoff -a sed -ri 's/.*swap.*/#&/' /etc/fstab #允许 iptables 检查桥接流量 cat <<EOF | sudo tee /etc/modules-load.d/k8s.conf br_netfilter EOF cat <<EOF | sudo tee /etc/sysctl.d/k8s.conf net.bridge.bridge-nf-call-ip6tables = 1 net.bridge.bridge-nf-call-iptables = 1 EOF sudo sysctl --system
配置时间同步:
yum install chrony
# 上面的手工操作,也可以使用 sed 自动替换
sed -i 's/^pool pool.*/pool cn.pool.ntp.org iburst/g' /etc/chrony.conf
systemctl enable chronyd --now
# 执行查看命令
chronyc sourcestats -v
下载sealos到master节点
master节点:
#上传sealos
wget https://github.com/labring/sealos/releases/download/v4.3.7/sealos_4.3.7_linux_amd64.tar.gz
tar zxvf sealos_4.3.7_linux_amd64.tar.gz sealos && chmod +x sealos && mv sealos /usr/bin
Sealos 吸取了 Docker 思想的精髓,把 Docker 的思想衍生到了集群的维度,实现分布式软件的构建、打包、交付、运行等等。
和操作系统 ISO 镜像或 Docker 镜像类似,集群镜像就是用一定的技术手段把整个集群的所有文件以一定格式打成的一个资源包。
以 Kubernetes 集群镜像为例,里面包含了除操作系统以外的所有文件:
服务器做免密
master节点做, 要配置这台master到其他所有服务器的免密登录
ssh-keygen
cd .ssh
cat /etc/hosts
192.168.66.2 master
192.168.66.3 node1
192.168.66.4 node2
#公钥复制到其他节点上
ssh-copy-id node1
ssh-copy-id node2
ssh-copy-id master
master节点进行k8s安装
sealos run labring/kubernetes:v1.25.0 labring/helm:v3.8.2 labring/calico:v3.24.1 --masters 192.168.66.2 --nodes 192.168.66.3:22,192.168.66.4:22
# 添加工作节点
sealos add --nodes 192.168.66.3:22,192.168.66.4:22
# 添加主节点
sealos add --masters 192.168.66.3:22,192.168.66.4:22
# 删除工作节点
sealos delete --nodes 192.168.66.3:22,192.168.66.4:22
# 删除主节点
sealos delete --masters 192.168.66.3:22,192.168.66.4:22
# 清理集群
sealos reset
kubectl get nodes
#获取在 K8s 集群节点上已经下载的 Image
crictl images ls
kubectl get pod -A
kubectl create deployment nginx --image=nginx:alpine --replicas=2
kubectl create service nodeport nginx --tcp=80:80
kubectl get svc -o wide
master ip:暴露的端口号:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。