Sealos搭建K8S

  1. Sealos的特性

  1. 管理集群生命周期

  • 快速安装高可用Kubernetes 集群

  • 添加/删除节点

  • 清理集群、备份与自动恢复等

  1. 下载和使用完全兼容OCI 标准的分布式应用

  • OpenEBS, MinIO, Ingress, PostgreSQL, MySQL, Redis 等

  1. 定制化分布式应用

  • 用Dockerfile 构建分布式应用镜像,保存所有的依赖

  • 发布分布式应用镜像到Docker Hub

  • 融合多个应用构建专属的云平台

  1. Sealos cloud

  • 支持运行分布式应用程序

  • 拥有完整的公共云功能,可以畅意运行

  1. Sealos搭建

  1. 设置防火墙为 lptables 并设置空规则[所有节点都执行]

systemctl stop firewalld

systemctl disable firewalld

yum -y install iptables-services ipvsadm ; systemctl start iptables ; systemctl enable iptables ;iptables -F : service iptables save

#关闭selinux[所有节点都执行]

setenforce 0

vim /etc/selinux/config

#修改SELINUX=enforcing 为 SELINUX=disabled

  1. 配置主机名[所有节点都执行每个节点名字必须唯一]

hostnamectl set-hostname 主机名

cat > /etc/hosts <

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4

::1 localhost localhost,localdomain localhost6 localhost6.localdomain6

192.168.1.233 master-1

192.168.1.234 master-2

192.168.1.235 master-3

192.168.1.236 node-1

你可能感兴趣的:(kubernetes,运维)