`

kubernetes安装

阅读更多
1.系统信息
角色系统CPUCore
master18.04.1-Ubuntu48G
slave18.04.1-Ubuntu44G


2.安装前准备(主节点和从节点都需要执行)
2.1 关闭swap
sudo swapoff -a

2.2 配置系统安装源和kubernetes安装源
在/etc/apt/sources.list.d/ 追加以下两个文件

deb https://mirrors.aliyun.com/kubernetes/apt kubernetes-xenial main


deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted
deb http://mirrors.aliyun.com/ubuntu/ bionic universe
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates universe
deb http://mirrors.aliyun.com/ubuntu/ bionic multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

2.3 安装kubernetes源的安全key
suod curl -s https://mirrors.aliyun.com/kubernetes/apt/doc/apt-key.gpg | sudo apt-key add -


3.安装主节点
3.1 安装docker
可参考docke install
具体步骤如下
3.1.1 下载安装包
containerd.io_1.2.6-3_amd64.deb
docker-ce-cli_19.03.5_3-0_ubuntu-bionic_amd64.deb
docker-ce_19.03.5_3-0_ubuntu-bionic_amd64.deb

3.1.2 使用 sudo dpkg -i 依次安装上面的三个包

3.1.3 追加docker用户组
sudo groupadd docker
3.1.4 将当前用户追加到docker用户组
sudo usermod -aG docker $USER
3.1.5 使用户组生效
newgrp docker
3.1.6 设置docker开机启动
sudo systemctl enable docker

3.2 安装kubelet组件
3.2.1 获取可安装的kubernetes版本号
apt-cache madison kubeadm
apt-cache madison kubelet
apt-cache madison kubectl

从返回列表中找一个自己要安装的版本号,我们以1.16.3-00为例
3.2.2 执行如下命令,开始安装
sudo apt install -y kubelet=1.16.3-00 kubeadm=1.16.3-00 kubectl=1.16.3-00

3.3 下载相关镜像
使用如下命令获取需要的镜像
chengf@chengf:~$ kubeadm config images list
W1126 21:01:07.767448   20606 version.go:101] could not fetch a Kubernetes version from the internet: unable to get URL "https://dl.k8s.io/release/stable-1.txt": Get https://dl.k8s.io/release/stable-1.txt: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
W1126 21:01:07.767516   20606 version.go:102] falling back to the local client version: v1.16.3
k8s.gcr.io/kube-apiserver:v1.16.3
k8s.gcr.io/kube-controller-manager:v1.16.3
k8s.gcr.io/kube-scheduler:v1.16.3
k8s.gcr.io/kube-proxy:v1.16.3
k8s.gcr.io/pause:3.1
k8s.gcr.io/etcd:3.3.15-0
k8s.gcr.io/coredns:1.6.2

因为k8s.gcr.io在国内无法访问,所以我们需要提前将这些镜像下载好,并tag成kubernetes需要的镜像名称
chengf@chengf:~$ docker images
REPOSITORY                                TAG                 IMAGE ID            CREATED             SIZE
kubeimage/kube-proxy-amd64                v1.16.3             9b65a0f78b09        13 days ago         86.1MB
k8s.gcr.io/kube-proxy                     v1.16.3             9b65a0f78b09        13 days ago         86.1MB
kubeimage/kube-apiserver-amd64            v1.16.3             df60c7526a3d        13 days ago         217MB
k8s.gcr.io/kube-apiserver                 v1.16.3             df60c7526a3d        13 days ago         217MB
kubeimage/kube-controller-manager-amd64   v1.16.3             bb16442bcd94        13 days ago         163MB
k8s.gcr.io/kube-controller-manager        v1.16.3             bb16442bcd94        13 days ago         163MB
kubeimage/kube-scheduler-amd64            v1.16.3             98fecf43a54f        13 days ago         87.3MB
k8s.gcr.io/kube-scheduler                 v1.16.3             98fecf43a54f        13 days ago         87.3MB
coredns/coredns                           1.6.5               70f311871ae1        2 weeks ago         41.6MB
gcr.azk8s.cn/google_containers/etcd       3.3.15-0            b2756210eeab        2 months ago        247MB
k8s.gcr.io/etcd                           3.3.15-0            b2756210eeab        2 months ago        247MB
coredns/coredns                           1.6.2               bf261d157914        3 months ago        44.1MB
k8s.gcr.io/coredns                        1.6.2               bf261d157914        3 months ago        44.1MB
kubeimage/pause                           3.1                 da86e6ba6ca1        23 months ago       742kB
k8s.gcr.io/pause                          3.1                 da86e6ba6ca1        23 months ago       742kB


3.4 获取默认pod的network范围
chengf@chengf:~$ kubeadm config print init-defaults
apiVersion: kubeadm.k8s.io/v1beta2
bootstrapTokens:
- groups:
  - system:bootstrappers:kubeadm:default-node-token
  token: abcdef.0123456789abcdef
  ttl: 24h0m0s
  usages:
  - signing
  - authentication
kind: InitConfiguration
localAPIEndpoint:
  advertiseAddress: 1.2.3.4
  bindPort: 6443
nodeRegistration:
  criSocket: /var/run/dockershim.sock
  name: chengf
  taints:
  - effect: NoSchedule
    key: node-role.kubernetes.io/master
---
apiServer:
  timeoutForControlPlane: 4m0s
apiVersion: kubeadm.k8s.io/v1beta2
certificatesDir: /etc/kubernetes/pki
clusterName: kubernetes
controllerManager: {}
dns:
  type: CoreDNS
etcd:
  local:
    dataDir: /var/lib/etcd
imageRepository: k8s.gcr.io
kind: ClusterConfiguration
kubernetesVersion: v1.16.0
networking:
  dnsDomain: cluster.local
  serviceSubnet: 10.96.0.0/12
scheduler: {}


3.5 通过kubeadm init安装master

root@chengf:/etc/kubernetes# kubeadm init --kubernetes-version=v1.16.3 --pod-network-cidr=10.96.0.0/12 --apiserver-advertise-address=192.168.0.107 --node-name=chengf --ignore-preflight-errors=ImagePull
[init] Using Kubernetes version: v1.16.3
[preflight] Running pre-flight checks
	[WARNING IsDockerSystemdCheck]: detected "cgroupfs" as the Docker cgroup driver. The recommended driver is "systemd". Please follow the guide at https://kubernetes.io/docs/setup/cri/
	[WARNING SystemVerification]: this Docker version is not on the list of validated versions: 19.03.5. Latest validated version: 18.09
[preflight] Pulling images required for setting up a Kubernetes cluster
[preflight] This might take a minute or two, depending on the speed of your internet connection
[preflight] You can also perform this action in beforehand using 'kubeadm config images pull'
[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env"
[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml"
[kubelet-start] Activating the kubelet service
[certs] Using certificateDir folder "/etc/kubernetes/pki"
[certs] Generating "ca" certificate and key
[certs] Generating "apiserver" certificate and key
[certs] apiserver serving cert is signed for DNS names [chengf kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local] and IPs [10.96.0.1 192.168.0.107]
[certs] Generating "apiserver-kubelet-client" certificate and key
[certs] Generating "front-proxy-ca" certificate and key
[certs] Generating "front-proxy-client" certificate and key
[certs] Generating "etcd/ca" certificate and key
[certs] Generating "etcd/server" certificate and key
[certs] etcd/server serving cert is signed for DNS names [chengf localhost] and IPs [192.168.0.107 127.0.0.1 ::1]
[certs] Generating "etcd/peer" certificate and key
[certs] etcd/peer serving cert is signed for DNS names [chengf localhost] and IPs [192.168.0.107 127.0.0.1 ::1]
[certs] Generating "etcd/healthcheck-client" certificate and key
[certs] Generating "apiserver-etcd-client" certificate and key
[certs] Generating "sa" key and public key
[kubeconfig] Using kubeconfig folder "/etc/kubernetes"
[kubeconfig] Writing "admin.conf" kubeconfig file
[kubeconfig] Writing "kubelet.conf" kubeconfig file
[kubeconfig] Writing "controller-manager.conf" kubeconfig file
[kubeconfig] Writing "scheduler.conf" kubeconfig file
[control-plane] Using manifest folder "/etc/kubernetes/manifests"
[control-plane] Creating static Pod manifest for "kube-apiserver"
[control-plane] Creating static Pod manifest for "kube-controller-manager"
[control-plane] Creating static Pod manifest for "kube-scheduler"
[etcd] Creating static Pod manifest for local etcd in "/etc/kubernetes/manifests"
[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 4m0s
[apiclient] All control plane components are healthy after 17.505256 seconds
[upload-config] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace
[kubelet] Creating a ConfigMap "kubelet-config-1.16" in namespace kube-system with the configuration for the kubelets in the cluster
[upload-certs] Skipping phase. Please see --upload-certs
[mark-control-plane] Marking the node chengf as control-plane by adding the label "node-role.kubernetes.io/master=''"
[mark-control-plane] Marking the node chengf as control-plane by adding the taints [node-role.kubernetes.io/master:NoSchedule]
[bootstrap-token] Using token: 7zi6wy.j3mm4fzdyxc0m3bx
[bootstrap-token] Configuring bootstrap tokens, cluster-info ConfigMap, RBAC Roles
[bootstrap-token] configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials
[bootstrap-token] configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token
[bootstrap-token] configured RBAC rules to allow certificate rotation for all node client certificates in the cluster
[bootstrap-token] Creating the "cluster-info" ConfigMap in the "kube-public" namespace
[addons] Applied essential addon: CoreDNS
[addons] Applied essential addon: kube-proxy

Your Kubernetes control-plane has initialized successfully!

To start using your cluster, you need to run the following as a regular user:

  mkdir -p $HOME/.kube
  sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
  sudo chown $(id -u):$(id -g) $HOME/.kube/config

You should now deploy a pod network to the cluster.
Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:
  https://kubernetes.io/docs/concepts/cluster-administration/addons/

Then you can join any number of worker nodes by running the following on each as root:

kubeadm join 192.168.0.107:6443 --token 7zi6wy.j3mm4fzdyxc0m3bx \
    --discovery-token-ca-cert-hash sha256:27e0d9fd7e5e309249cf3a515514e370c230b2115cea5170ec9e5be61c18b2c1

参数说明:
kubernetes-version版本号
pod-network-cidr设置上一步骤中获取的IP范围
apiserver-advertise-address设置成主机IP
node-name主机名称
ignore-preflight-errors忽略拉不到镜像的错误


安装过程会有如下警告:
[WARNING IsDockerSystemdCheck]: detected "cgroupfs" as the Docker cgroup driver. The recommended driver is "systemd". Please follow the guide at https://kubernetes.io/docs/setup/cri/
[WARNING SystemVerification]: this Docker version is not on the list of validated versions: 19.03.5. Latest validated version: 18.09


3.6 按照输出,执行如下命令,使当前普通用户可以执行kuber命令
mkdir -p $HOME/.kube
sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
sudo chown $(id -u):$(id -g) $HOME/.kube/config


4.安装node
4.1 安装docker(参考3.1)
4.2 安装kubelet kubeadm
sudo apt install -y kubelet=1.16.3-00 kubeadm=1.16.3-00
sudo systemctl enable kubelet && systemctl start kubelet

4.3 将从节点加入集群,执行主节点安装完成后生成的加入命令
sudo kubeadm join 192.168.0.107:6443 --token 7zi6wy.j3mm4fzdyxc0m3bx --discovery-token-ca-cert-hash sha256:27e0d9fd7e5e309249cf3a515514e370c230b2115cea5170ec9e5be61c18b2c1

  • 如果加入过程出错了,可以在命令行后面加上 --5来看具体的错误信息
  • 看到如下信息证明加入成功
  • This node has joined the cluster:
    * Certificate signing request was sent to apiserver and a response was received.
    * The Kubelet was informed of the new secure connection details.

    Run 'kubectl get nodes' on the control-plane to see this node join the cluster.


4.4 在master节点上执行

chengf@chengf:~$ kubectl get nodes
NAME     STATUS     ROLES    AGE     VERSION
chengf   NotReady   master   3d23h   v1.16.3
slave    NotReady   <none>   2m43s   v1.16.3

发下master为NotReady,这是因为还没有安装CNI网络插件,现在安装下,具体CNI可参考
CNI,本例选择weave
5,在主节点执行
kubectl apply -f "https://cloud.weave.works/k8s/net?k8s-version=$(kubectl version| base64 | tr -d  '\n')"

执行时报错,
chengf@chengf:~$ kubectl apply -f "https://cloud.weave.works/k8s/net?k8s-version=$(kubectl version| base64 | tr -d  '\n')"
Unable to connect to the server: net/http: TLS handshake timeout

分成三步做
(1)获取version
chengf@chengf:~$ kubectl version | base64 | tr -d '\n'
Q2xpZW50IFZlcnNpb246IHZlcnNpb24uSW5mb3tNYWpvcjoiMSIsIE1pbm9yOiIxNiIsIEdpdFZlcnNpb246InYxLjE2LjMiLCBHaXRDb21taXQ6ImIzY2JiYWUwOGVjNTJhN2ZjNzNkMzM0ODM4ZTE4ZDE3ZTg1MTI3NDkiLCBHaXRUcmVlU3RhdGU6ImNsZWFuIiwgQnVpbGREYXRlOiIyMDE5LTExLTEzVDExOjIzOjExWiIsIEdvVmVyc2lvbjoiZ28xLjEyLjEyIiwgQ29tcGlsZXI6ImdjIiwgUGxhdGZvcm06ImxpbnV4L2FtZDY0In0KU2VydmVyIFZlcnNpb246IHZlcnNpb24uSW5mb3tNYWpvcjoiMSIsIE1pbm9yOiIxNiIsIEdpdFZlcnNpb246InYxLjE2LjMiLCBHaXRDb21taXQ6ImIzY2JiYWUwOGVjNTJhN2ZjNzNkMzM0ODM4ZTE4ZDE3ZTg1MTI3NDkiLCBHaXRUcmVlU3RhdGU6ImNsZWFuIiwgQnVpbGREYXRlOiIyMDE5LTExLTEzVDExOjEzOjQ5WiIsIEdvVmVyc2lvbjoiZ28xLjEyLjEyIiwgQ29tcGlsZXI6ImdjIiwgUGxhdGZvcm06ImxpbnV4L2FtZDY0In0K

(2)从浏览器执行
https://cloud.weave.works/k8s/net?k8s-version=Q2xpZW50IFZlcnNpb246IHZlcnNpb24uSW5mb3tNYWpvcjoiMSIsIE1pbm9yOiIxNiIsIEdpdFZlcnNpb246InYxLjE2LjMiLCBHaXRDb21taXQ6ImIzY2JiYWUwOGVjNTJhN2ZjNzNkMzM0ODM4ZTE4ZDE3ZTg1MTI3NDkiLCBHaXRUcmVlU3RhdGU6ImNsZWFuIiwgQnVpbGREYXRlOiIyMDE5LTExLTEzVDExOjIzOjExWiIsIEdvVmVyc2lvbjoiZ28xLjEyLjEyIiwgQ29tcGlsZXI6ImdjIiwgUGxhdGZvcm06ImxpbnV4L2FtZDY0In0KU2VydmVyIFZlcnNpb246IHZlcnNpb24uSW5mb3tNYWpvcjoiMSIsIE1pbm9yOiIxNiIsIEdpdFZlcnNpb246InYxLjE2LjMiLCBHaXRDb21taXQ6ImIzY2JiYWUwOGVjNTJhN2ZjNzNkMzM0ODM4ZTE4ZDE3ZTg1MTI3NDkiLCBHaXRUcmVlU3RhdGU6ImNsZWFuIiwgQnVpbGREYXRlOiIyMDE5LTExLTEzVDExOjEzOjQ5WiIsIEdvVmVyc2lvbjoiZ28xLjEyLjEyIiwgQ29tcGlsZXI6ImdjIiwgUGxhdGZvcm06ImxpbnV4L2FtZDY0In0K


执行完会下载下来一个net.yaml,传到服务器上

(3)执行
chengf@chengf:~/soft$ kubectl apply -f net.yaml 
serviceaccount/weave-net created
clusterrole.rbac.authorization.k8s.io/weave-net created
clusterrolebinding.rbac.authorization.k8s.io/weave-net created
role.rbac.authorization.k8s.io/weave-net created
rolebinding.rbac.authorization.k8s.io/weave-net created
daemonset.apps/weave-net created


5.2 再次确认
chengf@chengf:~/soft$ kubectl get nodes
NAME     STATUS     ROLES    AGE     VERSION
chengf   Ready      master   3d23h   v1.16.3
slave    NotReady   <none>   40m     v1.16.3

chengf@chengf:~/soft$ kubectl get pods --all-namespaces
NAMESPACE     NAME                             READY   STATUS              RESTARTS   AGE
kube-system   coredns-5644d7b6d9-gdjwp         1/1     Running             0          3d23h
kube-system   coredns-5644d7b6d9-s9l76         1/1     Running             0          3d23h
kube-system   etcd-chengf                      1/1     Running             0          3d23h
kube-system   kube-apiserver-chengf            1/1     Running             6          3d23h
kube-system   kube-controller-manager-chengf   1/1     Running             6          3d23h
kube-system   kube-proxy-g7f6j                 1/1     Running             0          3d23h
kube-system   kube-proxy-nljf6                 0/1     ContainerCreating   0          42m
kube-system   kube-scheduler-chengf            1/1     Running             7          3d23h
kube-system   weave-net-7zbps                  2/2     Running             0          7m31s
kube-system   weave-net-kt2rz                  0/2     ContainerCreating   0          7m31s


发现weave-net-kt2rz没有启动起来,通过
kubectl --namespace=kube-system describe pod weave-net-kt2rz
命令查看

Failed create pod sandbox: rpc error: code = Unknown desc = failed pulling image "k8s.gcr.io/pause:3.1": Error response from daemon: Get https://k8s.gcr.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)

是下不下来镜像,这个镜像我们需要在slave节点上下载后tag
chengf@slave:~/soft$ docker pull kubeimage/pause:3.1
3.1: Pulling from kubeimage/pause
Image docker.io/kubeimage/pause:3.1 uses outdated schema1 manifest format. Please upgrade to a schema2 image for better future compatibility. More information at https://docs.docker.com/registry/spec/deprecated-schema-v1/
7675586df687: Pull complete 
Digest: sha256:c780ae1f699e27c67bb6f1ac38f9b0a576a9d22c862aaae0d3549b6000569958
Status: Downloaded newer image for kubeimage/pause:3.1
docker.io/kubeimage/pause:3.1
chengf@slave:~/soft$ docker tag kubeimage/pause:3.1 k8s.gcr.io/pause:3.1


如果还要错误,可以一一排查,直到问题解决
chengf@chengf:~/soft$ kubectl get pods --all-namespaces
NAMESPACE     NAME                             READY   STATUS    RESTARTS   AGE
kube-system   coredns-5644d7b6d9-gdjwp         1/1     Running   0          3d23h
kube-system   coredns-5644d7b6d9-s9l76         1/1     Running   0          3d23h
kube-system   etcd-chengf                      1/1     Running   0          3d23h
kube-system   kube-apiserver-chengf            1/1     Running   6          3d23h
kube-system   kube-controller-manager-chengf   1/1     Running   6          3d23h
kube-system   kube-proxy-g7f6j                 1/1     Running   0          3d23h
kube-system   kube-proxy-nljf6                 1/1     Running   0          56m
kube-system   kube-scheduler-chengf            1/1     Running   7          3d23h
kube-system   weave-net-7zbps                  2/2     Running   0          21m
kube-system   weave-net-kt2rz                  2/2     Running   6          21m


这样通过kubeadm工具就实现了kubernetes集群的搭建,如果集群安装失败,可以通过kubeadm reset命令恢复主机,之后再重新安装
分享到:
评论

相关推荐

    k8s教程:Kubernetes 安装部署教程+编程知识+技术开发

    k8s安装部署,k8s教程:Kubernetes 安装部署教程+编程知识+技术开发; k8s安装部署,k8s教程:Kubernetes 安装部署教程+编程知识+技术开发; k8s安装部署,k8s教程:Kubernetes 安装部署教程+编程知识+技术开发; k8...

    Kubernetes安装手册(非高可用版).md

    适合新手部署实验

    kubernetes安装脚本

    【Kubernetes安装脚本】 Kubernetes(简称K8s)是一种流行的开源容器编排系统,用于自动化容器化应用的部署、扩展和管理。它提供了一种高效、灵活的方式来管理跨多个主机的容器化应用程序。在CentOS 7操作系统上...

    kubernetes安装手册.txt

    一步一步安装kubernetes, 步骤比较详细, 适合新手

    基于CentOS 7的Kubernetes安装全过程(含附件)

    基于CentOS 7的Kubernetes安装全过程(含附件) 目录如下: 第一部分:Nginx on Kubernetes应用部署 3 一、环境准备 3 1.1软硬件环境 3 1.2 网络拓扑 4 二、Kubenetes及相关组件部署 6 2.1 Docker容器及私有仓库部署...

    Kubernetes安装.docx

    Kubernetes安装 Kubernetes是一种开源的容器编排系统,它可以自动化部署、扩展和管理容器ized应用程序。Kubernetes提供了一个高度灵活和可扩展的平台,使得开发者可以快速构建、部署和管理复杂的应用程序。 ...

    kubernetes安装.md

    ### Kubernetes离线集群二进制安装知识点解析 #### 一、环境准备与基础软件安装 在搭建Kubernetes(K8s)集群之前,首先需要确保所有节点的基础环境一致且已安装必要的工具。 **安装基础工具:** ```bash yum ...

    kubernetes安装部署文档

    这个文档是学习和实践Kubernetes安装部署的重要参考资料,务必仔细阅读和实践其中的教程。 总的来说,Kubernetes提供了一种强大且灵活的方式来管理容器化应用,但其安装和部署过程可能较为复杂,需要一定的学习和...

    kubernetes安装部署手册

    在了解了以上关于Kubernetes安装部署手册的知识点后,我们可以清楚地看到Kubernetes在容器化技术领域的影响力和其强大的功能。通过这份手册,运维人员和开发者可以学习到如何有效地部署、管理、扩展和维护Kubernetes...

    kubernetes安装相关包

    在“kubernetes安装相关包”中,"pkg"可能指的是安装过程中的软件包或者源代码包。这些包通常包括上述组件的二进制文件、配置文件、依赖库等。安装Kubernetes涉及的步骤可能包括以下部分: 1. **环境准备**:确保...

    Kubernetes指南+Kubernetes安装全流程,让你彻底学会Kubernetes

    Kubernetes指南+Kubernetes安装全流程,让你彻底学会Kubernetes

    Kubernetes安装

    【Kubernetes 安装详解】 在深入探讨Kubernetes(简称k8s)的安装之前,首先需要理解Kubernetes的核心组件及其作用。Kubernetes是目前最流行的容器编排平台,它提供了一个可扩展的开放平台来自动化应用部署、扩展...

    通过kubernetes安装redmine

    此文介绍通过kubernetes安装redmine。 详细介绍请参考博客文章:https://mp.csdn.net/postedit/82082134 此文档为excel格式,保护操作步骤的大部分截图,方便学习。 主要包括以下内容: 从github取得redmine的yaml...

    kubernetes安装部署

    - **Kubernetes**的名字来自希腊语,意思是“舵手” 或 “领航员”。K8s是将8个字母“ubernete”替换为“8”的缩写。 - K8S的创造者,是众人皆知的行业巨头——**Google**。 - 然而K8S并不是一件全新的发明。它的...

    Kubernetes 安装所需软件.zip.001

    k8s集群软件包,版本是v1.15.1

    Kubernetes安装部署.docx

    Kubernetes安装部署.docx

    云计算Kubernetes安装程序ARM64版本v1.25.15

    kubernetes 安装程序 arm64 架构 Kubernetes版本 v1.25.15 不包含kube容器镜像,仅安装工具和附属配套工具链 包含以下工具: apiextensions-apiserver kube-aggregator kube-apiserver kube-controller-manager kube-...

    kubernetes安装配置详解

    kubernetes安装配置详解,docker配置,路由配置,k8s的监控实例配置以及nginx实例配置等等。下载app注册免费获取:http://m3w.cn/jcsh

    Go-RancherKubernetesEngine一个非常简单快如闪电的Kubernetes安装程序

    Rancher Labs推出的Rancher RKE是一款基于Go语言开发的开源工具,它的设计目标是提供一个轻量级、安全且易于使用的Kubernetes安装程序。RKE的亮点在于其极简的命令行界面,使得用户只需几行命令,即可完成Kubernetes...

Global site tag (gtag.js) - Google Analytics