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

做鲜榨果汁店网站请人做网站 我需要知道哪几点

做鲜榨果汁店网站,请人做网站 我需要知道哪几点,微信里的小程序怎么彻底删除,老薛主机卸载wordpressKubeSphere介绍 官网地址#xff1a;https://kubesphere.io/zh/ KubeSphere愿景是打造一个以 Kubernetes 为内核的云原生分布式操作系统#xff0c;它的架构可以非常方便地使第三方应用与云原生生态组件进行即插即用#xff08;plug-and-play#xff09;的集成#xff0…KubeSphere介绍 官网地址https://kubesphere.io/zh/ KubeSphere愿景是打造一个以 Kubernetes 为内核的云原生分布式操作系统它的架构可以非常方便地使第三方应用与云原生生态组件进行即插即用plug-and-play的集成支持云原生应用在多云与多集群的统一分发和运维管理。提供简单易用的操作界面以及向导式操作方式在降低用户使用容器调度平台学习成本的同时极大减轻开发、测试、运维的日常工作的复杂度。 全栈的 Kubernetes 容器云 PaaS 解决方案KubeSphere 是在 Kubernetes 之上构建的以应用为中心的多租户NS、sa 容器平台提供全栈的 IT 自动化运维的能力简化企业的 DevOps 工作流。KubeSphere 提供了运维友好的向导式操作界面帮助企业快速构建一个强大和功能丰富的容器云平台。 KubeSphere 作为企业级的全栈化容器平台为用户提供了一个极致体验的 Web 控制台让您能够像使用任何其他互联网产品一样快速上手各项功能与服务。KubeSphere 目前提供了工作负载管理、微服务治理、DevOps 工程、Source to Image、多租户管理、多维度监控、日志查询与收集、告警通知、服务与网络、应用管理、基础设施管理、镜像管理、应用配置密钥管理等功能模块并支持对接多种开源的存储与网络方案支持高性能的商业存储与网络服务。 线上Demo体验https://kubesphere.cloud/login/?redirect%2Fconsole%2Fmanaged-cluster%2F 参考设置pwdAa123456. KubeKey一键部署K8S集群 官方文档https://kubesphere.io/zh/docs/v3.4/installing-on-linux/introduction/multioverview/ 一台master node初始化主节点、两台 work node join加入主节点 安装docker #移除以前的docker sudo yum remove docker \docker-client \docker-client-latest \docker-common \docker-latest \docker-latest-logrotate \docker-logrotate \docker-engine# 配置yum源 sudo yum install -y yum-utils sudo yum-config-manager \--add-repo \https://download.docker.com/linux/centos/docker-ce.repo# 安装docker sudo yum install -y docker-ce docker-ce-cli containerd.io# 配置阿里云镜像 sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json -EOF {registry-mirrors: [https://qiyb9988.mirror.aliyuncs.com] } EOF sudo systemctl daemon-reload sudo systemctl restart docker# 启动Docker sudo systemctl start docker # 设置开机启动Docker sudo systemctl enable docker# 检查是否安装成功 sudo docker run hello-world系统环境准备 # 节点之中不可以有重复的主机名mac地址等设置不同的hostname hostnamectl set-hostname k8s-master hostnamectl set-hostname k8s-node1 hostnamectl set-hostname k8s-node2# 关闭防火墙 sudo systemctl stop firewalld sudo systemctl disable firewalld# 将SElinux设置为permissive模式禁用 sudo setenforce 0 sudo sed -i s/^SELINUXenforcin$/SELINUXpermissive/ /etc/selinux/config # 关闭swap分区 sudo swapoff -a sudo sed -ri s/.*swap.*/#/ /etc/fstab# 允许 iptables 检查桥接流量(所有节点) cat EOF | sudo tee /etc/modules-load.d/k8s.conf br_netfilter EOFcat EOF | sudo tee /etc/sysctl.d/k8s.conf net.bridge.bridge-nf-call-ip6tables 1 net.bridge.bridge-nf-call-iptables 1 EOFsudo sysctl --system# 安装依赖 yum -y install socat conntrack ebtables ipset net-tools# 配置ssh互访所有节点 ssh-keygenssh-copy-id -i ~/.ssh/id_rsa.pub root192.168.0.111ssh-copy-id -i ~/.ssh/id_rsa.pub root192.168.0.112ssh-copy-id -i ~/.ssh/id_rsa.pub root192.168.0.113下载KubeKey 使用这里下载好的解压即可也可使用curl 这行命令进行下载 链接https://pan.baidu.com/s/1eiGc2t–IXmBFhtIQVK9Sg?pwdc8ly 提取码c8ly # 只在master上执行即可 export KKZONEcncurl -sfL https://get-kk.kubesphere.io | sh -# 为 kk 添加可执行权限 chmod x kk创建集群 # 创建集群配置文件 ./kk create config --with-kubernetes v1.22.12 --with-kubesphere v3.4.0vim config-sample.yamlspec:hosts:- {name: master, address: 192.168.0.111, internalAddress: 192.168.0.111, user: root, password: 123456}- {name: node1, address: 192.168.0.112, internalAddress: 192.168.0.112, user: root, password: 123456}- {name: node2, address: 192.168.0.113, internalAddress: 192.168.0.113, user: root, password: 123456}roleGroups:etcd:- mastercontrol-plane: - masterworker:- node1- node2# 创建集群 整个安装过程可能需要 10 到 20 分钟具体取决于您的计算机和网络环境 ./kk create cluster -f config-sample.yaml# 安装完成后您会看到如下内容 10:17:15 CST success: [master] ##################################################### ### Welcome to KubeSphere! ### #####################################################Console: http://192.168.0.110:30880 Account: admin Password: P88w0rd NOTES1. After you log into the console, please check themonitoring status of service components inCluster Management. If any service is notready, please wait patiently until all components are up and running.2. Please change the default password after login.##################################################### https://kubesphere.io 2023-10-26 10:25:15 ##################################################### 10:25:32 CST success: [master] 10:25:32 CST Pipeline[CreateClusterPipeline] execute successfully Installation is complete.Please check the result using the command:kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app in (ks-install, ks-installer) -o jsonpath{.items[0].metadata.name}) -f看到这里就算安装成功
http://www.dnsts.com.cn/news/151061.html

相关文章:

  • 建设网站后如何上线哈尔滨网站关键词优化排名
  • 宁波网站建设设计方案建设移动网站
  • 宁波网站建设-中国互联怎么做一个国外网站
  • google怎么做网站推广pythom 网站开发规范
  • wordpress更改登录函数深圳优化百度
  • 网站开发流程及进度安排wordpress中文主题免费下载
  • 动漫网站建设意义网站生成器下载
  • 哪个网站可兼职做logo手机如何做微商城网站设计
  • 济南网站建设 推搜点做优惠卷网站倒闭了多少钱
  • 青岛行业网站建设电话怎样建立网站有哪些流程
  • 邯郸做wap网站费用福州网龙网络公司
  • 网站怎么做免费推广网站建立公司四川
  • 一个服务器可以放多少网站备案查询入口
  • 盈利网站备案网站开发有什么网站
  • 摩托车专业网站wordpress插件原理
  • 企业建站系统是什么名费网站制作视频教程
  • 部标平台软件网站开发嘉峪关市建设局网站
  • 网站代码优化有哪些礼嘉网络推广
  • 网站后台管理系统模板 html网站宣传的优点
  • 企业网站排名软件度智能优化精美网页赏析
  • 网站建设的申请理由网店库存管理软件
  • 网站图片怎么优化是网站推广的案例
  • 北京网站建设的服务公司微建网站
  • 高唐网站建设建设工程施工员考试在哪个网站
  • 技术支持广州网站建设北京市网站制作
  • 阿里云网站备案流程陕西住房与建设厅网站
  • 深圳网站建设设计网站建设的利益
  • app网站开发学习服务之家网站推广公司
  • 做自己的网站花多钱商品房交易网
  • 域名网站空间做网站遵义