Blogger Information
Blog 35
fans 0
comment 0
visits 23228
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Ubuntu21.10配置Kubernetes 镜像
Spark
Original
566 people have browsed it

Kubernetes 镜像

参考阿里云官方镜像站:https://developer.aliyun.com/mirror/

简介

Kubernetes 是一个开源系统,用于容器化应用的自动部署、扩缩和管理。它将构成应用的容器按逻辑单位进行分组以便于管理和发现。

下载地址:阿里云开源镜像站资源目录

Ubuntu21.10配置方法

1: 安装必要的一些系统工具,执行如下命令:

apt-get update && apt-get install -y apt-transport-https

2: 安装GPG证书,执行如下命令:

curl https://mirrors.aliyun.com/kubernetes/apt/doc/apt-key.gpg | apt-key add -

3: 添加并查看源,执行如下命令:

cat <<EOF >/etc/apt/sources.list.d/kubernetes.list

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

EOF

4: 更新并安装,执行如下命令:

apt-get update

apt-get install -y kubelet kubeadm kubectl

至此安装配置已完成。


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post