From 5f2ba4c2cd28517ec8c0a3960fe37005a1e6d6a8 Mon Sep 17 00:00:00 2001 From: "Matt T. Proud" Date: Sun, 10 Jul 2016 12:58:56 +0200 Subject: [PATCH] docs: convert curl downloads from HTTP to HTTPS Several command literals in the installation documents for downloading used `curl` with non-HTTPS protocol. They have been converted to HTTPS for both man-in-the-middle risk reduction and consistency with the rest of the documentation corpus. --- docs/getting-started-guides/docker.md | 2 +- docs/getting-started-guides/minikube.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started-guides/docker.md b/docs/getting-started-guides/docker.md index a1807ce6fd..0b65719cf8 100644 --- a/docs/getting-started-guides/docker.md +++ b/docs/getting-started-guides/docker.md @@ -90,7 +90,7 @@ http://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/${GO An example install with `linux/amd64`: ``` -curl -sSL "http://storage.googleapis.com/kubernetes-release/release/{{page.version}}.0/bin/linux/amd64/kubectl" > /usr/bin/kubectl +curl -sSL "https://storage.googleapis.com/kubernetes-release/release/{{page.version}}.0/bin/linux/amd64/kubectl" > /usr/bin/kubectl chmod +x /usr/bin/kubectl ``` diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md index 735d397a7d..5185244c37 100644 --- a/docs/getting-started-guides/minikube.md +++ b/docs/getting-started-guides/minikube.md @@ -79,7 +79,7 @@ curl -Lo kubectl http://storage.googleapis.com/kubernetes-release/release/{{page The generic download path is: ``` -http://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/${GOOS}/${GOARCH}/${K8S_BINARY} +https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/${GOOS}/${GOARCH}/${K8S_BINARY} ``` ### Starting the cluster