[zh] Resync install-kubectl-windows page

This commit is contained in:
Qiming Teng
2021-11-02 13:56:08 +08:00
parent f49e939aa7
commit 2514621e9e
@@ -58,7 +58,7 @@ The following methods exist for installing kubectl on Windows:
如果你已安装了 `curl`,也可以使用此命令:
```powershell
curl -LO https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/windows/amd64/kubectl.exe
curl -LO "https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/windows/amd64/kubectl.exe"
```
<!--
@@ -78,7 +78,7 @@ The following methods exist for installing kubectl on Windows:
下载 kubectl 校验和文件:
```powershell
curl -LO https://dl.k8s.io/{{< param "fullversion" >}}/bin/windows/amd64/kubectl.exe.sha256
curl -LO "https://dl.k8s.io/{{< param "fullversion" >}}/bin/windows/amd64/kubectl.exe.sha256"
```
<!--
@@ -249,7 +249,7 @@ kubectl 为 Bash 和 Zsh 提供自动补全功能,可以减轻许多输入的
1. 用以下命令下载最新发行版:
```powershell
curl -LO https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/windows/amd64/kubectl-convert.exe
curl -LO "https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/windows/amd64/kubectl-convert.exe"
```
<!--
@@ -262,7 +262,7 @@ kubectl 为 Bash 和 Zsh 提供自动补全功能,可以减轻许多输入的
下载 kubectl-convert 校验和文件:
```powershell
curl -LO https://dl.k8s.io/{{< param "fullversion" >}}/bin/windows/amd64/kubectl-convert.exe.sha256
curl -LO "https://dl.k8s.io/{{< param "fullversion" >}}/bin/windows/amd64/kubectl-convert.exe.sha256"
```
<!--