Skip to content

Commit 42a93ae

Browse files
authored
Merge pull request #29571 from niteshseram/fix/links-windows
fix broken link in install kubectl windows page
2 parents 7f198cd + 1016cd3 commit 42a93ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/en/docs/tasks/tools/install-kubectl-windows.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The following methods exist for installing kubectl on Windows:
3030
Or if you have `curl` installed, use this command:
3131

3232
```powershell
33-
curl -LO https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/windows/amd64/kubectl.exe
33+
curl -LO "https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/windows/amd64/kubectl.exe"
3434
```
3535

3636
{{< note >}}
@@ -42,7 +42,7 @@ The following methods exist for installing kubectl on Windows:
4242
Download the kubectl checksum file:
4343

4444
```powershell
45-
curl -LO https://dl.k8s.io/{{< param "fullversion" >}}/bin/windows/amd64/kubectl.exe.sha256
45+
curl -LO "https://dl.k8s.io/{{< param "fullversion" >}}/bin/windows/amd64/kubectl.exe.sha256"
4646
```
4747

4848
Validate the kubectl binary against the checksum file:
@@ -147,15 +147,15 @@ Below are the procedures to set up autocompletion for Zsh, if you are running th
147147
1. Download the latest release with the command:
148148

149149
```powershell
150-
curl -LO https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/windows/amd64/kubectl-convert.exe
150+
curl -LO "https://dl.k8s.io/release/{{< param "fullversion" >}}/bin/windows/amd64/kubectl-convert.exe"
151151
```
152152

153153
1. Validate the binary (optional)
154154

155155
Download the kubectl-convert checksum file:
156156

157157
```powershell
158-
curl -LO https://dl.k8s.io/{{< param "fullversion" >}}/bin/windows/amd64/kubectl-convert.exe.sha256
158+
curl -LO "https://dl.k8s.io/{{< param "fullversion" >}}/bin/windows/amd64/kubectl-convert.exe.sha256"
159159
```
160160

161161
Validate the kubectl-convert binary against the checksum file:

0 commit comments

Comments
 (0)