fix broken link in install kubectl windows page
This commit is contained in:
parent
7f198cd154
commit
1016cd383d
|
@ -30,7 +30,7 @@ The following methods exist for installing kubectl on Windows:
|
||||||
Or if you have `curl` installed, use this command:
|
Or if you have `curl` installed, use this command:
|
||||||
|
|
||||||
```powershell
|
```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"
|
||||||
```
|
```
|
||||||
|
|
||||||
{{< note >}}
|
{{< note >}}
|
||||||
|
@ -42,7 +42,7 @@ The following methods exist for installing kubectl on Windows:
|
||||||
Download the kubectl checksum file:
|
Download the kubectl checksum file:
|
||||||
|
|
||||||
```powershell
|
```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"
|
||||||
```
|
```
|
||||||
|
|
||||||
Validate the kubectl binary against the checksum file:
|
Validate the kubectl binary against the checksum file:
|
||||||
|
@ -147,7 +147,7 @@ Below are the procedures to set up autocompletion for Zsh, if you are running th
|
||||||
1. Download the latest release with the command:
|
1. Download the latest release with the command:
|
||||||
|
|
||||||
```powershell
|
```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"
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Validate the binary (optional)
|
1. Validate the binary (optional)
|
||||||
|
@ -155,7 +155,7 @@ Below are the procedures to set up autocompletion for Zsh, if you are running th
|
||||||
Download the kubectl-convert checksum file:
|
Download the kubectl-convert checksum file:
|
||||||
|
|
||||||
```powershell
|
```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"
|
||||||
```
|
```
|
||||||
|
|
||||||
Validate the kubectl-convert binary against the checksum file:
|
Validate the kubectl-convert binary against the checksum file:
|
||||||
|
|
Loading…
Reference in New Issue