安装Kubernetes 1.21.5
删除 Kubernetes 旧版本,安装 Kubernetes 1.21.5。
必备安装
每台服务器都需要
root 登录
su - root
设置时区
timedatectl set-timezone Asia/Shanghai
设置主机名
hostnamectl set-hostname new-hostname
安装 Docker-CE
apt-get -y update
apt-get -y install apt-transport-https ca-certificates curl software-properties-common
# 安装GPG证书
curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | apt-key add -
# 写入软件源信息
add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
# 更新并安装
apt-get -y update
apt-get -y install docker-ce docker-ce-cli containerd.io