Skip to content

Commit a8847ee

Browse files
authored
Merge pull request #340 from rjsadow/master
doc: use dl.k8s.io, not kubernetes-release bucket
2 parents 21e5990 + eef2799 commit a8847ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/content/en/installation/kubectl/binaries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ description: >
3232
2. Download the latest release with the command:
3333

3434
```bash
35-
curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/$os/kubectl"
35+
curl -LO "https://dl.k8s.io/release/$(curl -sL https://dl.k8s.io/release/stable.txt)/bin/$os/kubectl"
3636
```
3737

38-
To download a specific version, replace the `$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)` portion of the command with the specific version.
38+
To download a specific version, replace the `$(curl -sL https://dl.k8s.io/release/stable.txt)` portion of the command with the specific version.
3939

4040
For example, to download version v1.19.0 on Linux, type:
4141

4242
```bash
43-
curl -LO "https://storage.googleapis.com/kubernetes-release/release/v1.19.0/bin/$os/kubectl"
43+
curl -LO "https://dl.k8s.io/release/v1.19.0/bin/$os/kubectl"
4444
```
4545

4646
3. Make the kubectl binary executable.

0 commit comments

Comments
 (0)