Skip to content

Commit

Permalink
fix broken link in install kubectl windows page
Browse files Browse the repository at this point in the history
  • Loading branch information
niteshseram committed Aug 27, 2021
1 parent 7f198cd commit 1016cd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions content/en/docs/tasks/tools/install-kubectl-windows.md
Expand Up @@ -30,7 +30,7 @@ The following methods exist for installing kubectl on Windows:
Or if you have `curl` installed, use this command:

```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 >}}
Expand All @@ -42,7 +42,7 @@ The following methods exist for installing kubectl on Windows:
Download the kubectl checksum file:

```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:
Expand Down Expand Up @@ -147,15 +147,15 @@ Below are the procedures to set up autocompletion for Zsh, if you are running th
1. Download the latest release with the command:

```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)

Download the kubectl-convert checksum file:

```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:
Expand Down

0 comments on commit 1016cd3

Please sign in to comment.