k8s

2022-10-27 宋洋葱 宋洋葱
  1. 使用清华源
# 备份
cp -r /etc/yum.repos.d /etc/yum.repos.bak
# 对于 CentOS 8
sudo sed -e 's|^mirrorlist=|#mirrorlist=|g' \
         -e 's|^#baseurl=http://mirror.centos.org/$contentdir|baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos|g' \
         -i.bak \
         /etc/yum.repos.d/CentOS-*.repo
  1. 使用 kubesphere 的 kk 安装 kubernetes
yum install -y socat conntrack ebtables ipset
export KKZONE=cn
curl -sfL https://get-kk.kubesphere.io | VERSION=v2.2.2 sh 
# -s 不显示进度信息,silent
# -f 不显示错误信息,fail
# -L 相当于自动 302 跳转,location 
./kk create cluster --with-kubernetes v1.22.10 --with-kubesphere v3.3.0 --container-manager containerd -y
# 检测安装
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