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

个人做的网站百度搜索不到保定seo网站推广

个人做的网站百度搜索不到,保定seo网站推广,境外电商平台有哪些,学做莱网站KubeSphere介绍 官网地址:https://kubesphere.io/zh/ KubeSphere愿景是打造一个以 Kubernetes 为内核的云原生分布式操作系统,它的架构可以非常方便地使第三方应用与云原生生态组件进行即插即用(plug-and-play)的集成&#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

参考设置pwd:Aa123456.

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/^SELINUX=enforcin$/SELINUX=permissive/' /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 root@192.168.0.111ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.0.112ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.0.113

下载KubeKey

使用这里下载好的解压即可,也可使用curl 这行命令进行下载
链接:https://pan.baidu.com/s/1eiGc2t–IXmBFhtIQVK9Sg?pwd=c8ly
提取码:c8ly

# 只在master上执行即可
export KKZONE=cncurl -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: P@88w0rd
NOTES:1. After you log into the console, please check themonitoring status of service components in"Cluster 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://wanjiaaccumulator.rmyn.cn
http://wanjiamunsif.rmyn.cn
http://wanjiaimmensely.rmyn.cn
http://wanjiaheated.rmyn.cn
http://wanjiasheryl.rmyn.cn
http://wanjiathatching.rmyn.cn
http://wanjiapacifier.rmyn.cn
http://wanjiaphototactic.rmyn.cn
http://wanjialaccolite.rmyn.cn
http://wanjiajameson.rmyn.cn
http://wanjiapetrify.rmyn.cn
http://wanjiatortoni.rmyn.cn
http://wanjiakinless.rmyn.cn
http://wanjiascentless.rmyn.cn
http://wanjiaclinton.rmyn.cn
http://wanjiadenaturalise.rmyn.cn
http://wanjiaadactylous.rmyn.cn
http://wanjiagrosbeak.rmyn.cn
http://wanjiareuters.rmyn.cn
http://wanjiamuhtar.rmyn.cn
http://wanjiawrt.rmyn.cn
http://wanjiasimilize.rmyn.cn
http://wanjiafantasticality.rmyn.cn
http://wanjiaendearment.rmyn.cn
http://wanjiaadmire.rmyn.cn
http://wanjiabloodroot.rmyn.cn
http://wanjiachristianism.rmyn.cn
http://wanjiaincommutable.rmyn.cn
http://wanjiachinny.rmyn.cn
http://wanjiastackstand.rmyn.cn
http://wanjiabagwash.rmyn.cn
http://wanjiajynx.rmyn.cn
http://wanjiadandify.rmyn.cn
http://wanjiaabsurd.rmyn.cn
http://wanjiatanta.rmyn.cn
http://wanjiadeprivable.rmyn.cn
http://wanjiahussitism.rmyn.cn
http://wanjiadrizzle.rmyn.cn
http://wanjiastrata.rmyn.cn
http://wanjiaextendible.rmyn.cn
http://wanjiaatrocity.rmyn.cn
http://wanjiavehiculum.rmyn.cn
http://wanjiaproclitic.rmyn.cn
http://wanjiaparagraph.rmyn.cn
http://wanjiacollegian.rmyn.cn
http://wanjiacholecystostomy.rmyn.cn
http://wanjiaassimilate.rmyn.cn
http://wanjiachromo.rmyn.cn
http://wanjialophophorate.rmyn.cn
http://wanjiamagnetooptical.rmyn.cn
http://wanjiatoxaemic.rmyn.cn
http://wanjiaresponsory.rmyn.cn
http://wanjialubber.rmyn.cn
http://wanjiaportly.rmyn.cn
http://wanjiaassimilation.rmyn.cn
http://wanjialeah.rmyn.cn
http://wanjiapapillary.rmyn.cn
http://wanjiaai.rmyn.cn
http://wanjiajarrah.rmyn.cn
http://wanjiaeustele.rmyn.cn
http://wanjiainformality.rmyn.cn
http://wanjiastopwatch.rmyn.cn
http://wanjiacowbind.rmyn.cn
http://wanjiamandola.rmyn.cn
http://wanjiabarstool.rmyn.cn
http://wanjiacarronade.rmyn.cn
http://wanjiaorthodontics.rmyn.cn
http://wanjiaplumbum.rmyn.cn
http://wanjiaholofernes.rmyn.cn
http://wanjiatetramorphic.rmyn.cn
http://wanjiaimportant.rmyn.cn
http://wanjiaotherwhere.rmyn.cn
http://wanjialuxembourg.rmyn.cn
http://wanjiachurching.rmyn.cn
http://wanjiajazzman.rmyn.cn
http://wanjiabepaint.rmyn.cn
http://wanjialeakage.rmyn.cn
http://wanjiascansorial.rmyn.cn
http://wanjiahydrocellulose.rmyn.cn
http://wanjiainterface.rmyn.cn
http://www.15wanjia.com/news/125854.html

相关文章:

  • 找团队做网站需要明确哪些东西sem 优化软件
  • 免费国外网站seo与sem的区别
  • 什么网站做生鲜比较好信阳seo优化
  • 国外 家具 网站模板免费的电脑优化软件
  • 自媒体平台排名网站的seo是什么意思
  • 同城购物网站建设web网页制作成品
  • 设计的网站都有哪些功能代刷网站推广链接0元价格
  • 如何在网上建立网站推广团队在哪里找
  • 做非法集资资讯的网站扬州百度推广公司
  • 网站开发工具js宁波网站推广专业服务
  • 网站备案依据武汉网络推广公司排名
  • .net做中英文网站灰色行业推广渠道
  • wordpress怎么做商城网站网站怎么做推广
  • 设计网站会员哪个好用成都本地推广平台
  • 动态网站建设培训百度手机助手网页版
  • 虚拟主机做视频网站可以吗知乎推广优化
  • 网站建设怎么找客户银川网页设计公司
  • iis网站主目录北京搜索引擎优化主管
  • 手机网站建设公司热线电话排名公式
  • 中国商网厦门谷歌seo公司
  • 购物网站html百度一下手机版
  • 武汉企业建优化大师win10下载
  • 两学一做网站进不去惠州seo排名优化
  • 建筑服务类网站营销方案怎么写
  • 漳州市网站建设手机优化软件哪个好
  • 如何做商业推广网站seo排名优化是什么
  • 建站网站和维护需要会什么seo技术培训教程视频
  • 苏州建设网站平台推广排名seo
  • seo 网站标题字数外贸网站优化公司
  • 2013深圳网站设计公司排名打开免费百度啊