Skip to content

Commit 3ac8de9

Browse files
[zh] update tool version in install-kubeadm without package manager case
`CNI_PLUGINS_VERSION`, `CRICTL_VERSION` and `RELEASE_VERSION` in English has been updated, synchronize changes in Chinese
1 parent 2daa005 commit 3ac8de9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/zh-cn/docs/setup/production-environment/tools/kubeadm/install-kubeadm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ Install CNI plugins (required for most pod network):
377377
安装 CNI 插件(大多数 Pod 网络都需要):
378378

379379
```bash
380-
CNI_PLUGINS_VERSION="v1.2.0"
380+
CNI_PLUGINS_VERSION="v1.3.0"
381381
ARCH="amd64"
382382
DEST="/opt/cni/bin"
383383
sudo mkdir -p "$DEST"
@@ -409,7 +409,7 @@ Install crictl (required for kubeadm / Kubelet Container Runtime Interface (CRI)
409409
安装 crictl(kubeadm/kubelet 容器运行时接口(CRI)所需)
410410

411411
```bash
412-
CRICTL_VERSION="v1.26.0"
412+
CRICTL_VERSION="v1.27.0"
413413
ARCH="amd64"
414414
curl -L "https://github.com/kubernetes-sigs/cri-tools/releases/download/${CRICTL_VERSION}/crictl-${CRICTL_VERSION}-linux-${ARCH}.tar.gz" | sudo tar -C $DOWNLOAD_DIR -xz
415415
```
@@ -426,7 +426,7 @@ cd $DOWNLOAD_DIR
426426
sudo curl -L --remote-name-all https://dl.k8s.io/release/${RELEASE}/bin/linux/${ARCH}/{kubeadm,kubelet}
427427
sudo chmod +x {kubeadm,kubelet}
428428

429-
RELEASE_VERSION="v0.4.0"
429+
RELEASE_VERSION="v0.15.1"
430430
curl -sSL "https://raw.githubusercontent.com/kubernetes/release/${RELEASE_VERSION}/cmd/kubepkg/templates/latest/deb/kubelet/lib/systemd/system/kubelet.service" | sed "s:/usr/bin:${DOWNLOAD_DIR}:g" | sudo tee /etc/systemd/system/kubelet.service
431431
sudo mkdir -p /etc/systemd/system/kubelet.service.d
432432
curl -sSL "https://raw.githubusercontent.com/kubernetes/release/${RELEASE_VERSION}/cmd/kubepkg/templates/latest/deb/kubeadm/10-kubeadm.conf" | sed "s:/usr/bin:${DOWNLOAD_DIR}:g" | sudo tee /etc/systemd/system/kubelet.service.d/10-kubeadm.conf

0 commit comments

Comments
 (0)