Skip to content

Commit 68999b9

Browse files
authored
Merge pull request #41072 from 9bany/fix/replace-all-references-storage-to-k8s
Replace all references to storage.googleapis.com/kubernetes-release with dl.k8s.io
2 parents 1d26fb7 + c8ac19f commit 68999b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ f017f405ff4b gcr.io/google\_containers/hyperkube-arm:v1.1.2 "/hyperkube
8585

8686
When that’s looking good we’re able to access the master node of the Kubernetes cluster with kubectl. Kubectl for ARM can be downloaded from googleapis storage. kubectl get nodes shows which cluster nodes are registered with its status. The master node is named 127.0.0.1.
8787
```
88-
$ curl -fsSL -o /usr/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.1.2/bin/linux/arm/kubectl
88+
$ curl -fsSL -o /usr/bin/kubectl https://dl.k8s.io/release/v1.1.2/bin/linux/arm/kubectl
8989
9090
$ kubectl get nodes
9191

content/en/blog/_posts/2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ In order to manage the Kubernetes cluster, we need to install [kubectl](https://
8080
The recommended way to install it on Linux is to download the pre-built binary and move it to a directory under the `$PATH`.
8181

8282
```shell
83-
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \
83+
curl -LO https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl \
8484
&& sudo install kubectl /usr/local/bin && rm kubectl
8585
```
8686

0 commit comments

Comments
 (0)