From 02f092e65ec3305eb38301776edb6e602c6e9fdc Mon Sep 17 00:00:00 2001 From: 9bany Date: Thu, 11 May 2023 16:32:12 +0700 Subject: [PATCH 1/4] [En] replace all references to https://storage.googleapis.com/kubernetes-release to https://dl.k8s.ioadd log --- .../_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md | 2 +- ...9-03-28-running-kubernetes-locally-on-linux-with-minikube.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md b/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md index 5625b21fc3794..b5b8b824291b7 100644 --- a/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md +++ b/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md @@ -85,7 +85,7 @@ f017f405ff4b gcr.io/google\_containers/hyperkube-arm:v1.1.2 "/hyperkube 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. ``` -$ curl -fsSL -o /usr/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.1.2/bin/linux/arm/kubectl +$ curl -fsSL -o /usr/bin/kubectl https://dl.k8s.io/release/v1.1.2/bin/linux/arm/kubectl $ kubectl get nodes diff --git a/content/en/blog/_posts/2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md b/content/en/blog/_posts/2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md index ebbf59177248c..1d9a43351c97c 100644 --- a/content/en/blog/_posts/2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md +++ b/content/en/blog/_posts/2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md @@ -80,7 +80,7 @@ In order to manage the Kubernetes cluster, we need to install [kubectl](https:// The recommended way to install it on Linux is to download the pre-built binary and move it to a directory under the `$PATH`. ```shell -curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \ +curl -LO https://dl.k8s.io/release/$(curl -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl \ && sudo install kubectl /usr/local/bin && rm kubectl ``` From 5c4d0a56ac5b12fb934f91c4cc1308a29cf553b1 Mon Sep 17 00:00:00 2001 From: bany <53461381+9bany@users.noreply.github.com> Date: Tue, 23 May 2023 23:38:15 +0700 Subject: [PATCH 2/4] add -L Co-authored-by: Tim Bannister --- ...9-03-28-running-kubernetes-locally-on-linux-with-minikube.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/blog/_posts/2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md b/content/en/blog/_posts/2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md index 1d9a43351c97c..097da0e1d27a8 100644 --- a/content/en/blog/_posts/2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md +++ b/content/en/blog/_posts/2019-03-28-running-kubernetes-locally-on-linux-with-minikube.md @@ -80,7 +80,7 @@ In order to manage the Kubernetes cluster, we need to install [kubectl](https:// The recommended way to install it on Linux is to download the pre-built binary and move it to a directory under the `$PATH`. ```shell -curl -LO https://dl.k8s.io/release/$(curl -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl \ +curl -LO https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl \ && sudo install kubectl /usr/local/bin && rm kubectl ``` From edb80667ce5516ff83743eac4450ef5c84849c40 Mon Sep 17 00:00:00 2001 From: bany <53461381+9bany@users.noreply.github.com> Date: Tue, 23 May 2023 23:38:49 +0700 Subject: [PATCH 3/4] add -L Co-authored-by: Tim Bannister --- .../_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md b/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md index b5b8b824291b7..25ecb8485d46d 100644 --- a/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md +++ b/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md @@ -85,7 +85,7 @@ f017f405ff4b gcr.io/google\_containers/hyperkube-arm:v1.1.2 "/hyperkube 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. ``` -$ curl -fsSL -o /usr/bin/kubectl https://dl.k8s.io/release/v1.1.2/bin/linux/arm/kubectl +$ curl -fsSL -L -o /usr/bin/kubectl https://dl.k8s.io/release/v1.1.2/bin/linux/arm/kubectl $ kubectl get nodes From c8ac19f4a875672c4d2784690dba9f154a8e5e67 Mon Sep 17 00:00:00 2001 From: Tim Bannister Date: Sat, 12 Aug 2023 14:48:00 +0100 Subject: [PATCH 4/4] Undo misguided correction --- .../_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md b/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md index 25ecb8485d46d..b5b8b824291b7 100644 --- a/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md +++ b/content/en/blog/_posts/2015-12-00-Creating-Raspberry-Pi-Cluster-Running.md @@ -85,7 +85,7 @@ f017f405ff4b gcr.io/google\_containers/hyperkube-arm:v1.1.2 "/hyperkube 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. ``` -$ curl -fsSL -L -o /usr/bin/kubectl https://dl.k8s.io/release/v1.1.2/bin/linux/arm/kubectl +$ curl -fsSL -o /usr/bin/kubectl https://dl.k8s.io/release/v1.1.2/bin/linux/arm/kubectl $ kubectl get nodes