From 3dedc7ffe66102558f3136883dc8dae0c7951cea Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Mon, 14 Sep 2020 17:44:41 -0700 Subject: [PATCH] update install docs for v0.9.0 --- README.md | 8 ++++---- site/content/_index.md | 2 +- site/content/docs/user/quick-start.md | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index fac9cb9561..a5f700e5b3 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ kind is a tool for running local Kubernetes clusters using Docker container "nodes". kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI. -If you have [go] ([1.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/kind@v0.8.1 && kind create cluster` is all you need! +If you have [go] ([1.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/kind@v0.9.0 && kind create cluster` is all you need! ![](site/static/images/kind-create-cluster.png) @@ -23,7 +23,7 @@ kind bootstraps each "node" with [kubeadm][kubeadm]. For more details see [the d For a complete [install guide] see [the documentation here][install guide]. -You can install kind with `GO111MODULE="on" go get sigs.k8s.io/kind@v0.8.1`. +You can install kind with `GO111MODULE="on" go get sigs.k8s.io/kind@v0.9.0`. **NOTE**: please use the latest go to do this, ideally go 1.13 or greater. @@ -45,7 +45,7 @@ into your `$PATH`: On Mac & Linux: ```console -curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.8.1/kind-$(uname)-amd64" +curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.9.0/kind-$(uname)-amd64" chmod +x ./kind mv ./kind /some-dir-in-your-PATH/kind ``` @@ -59,7 +59,7 @@ brew install kind On Windows: ```powershell -curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.8.1/kind-windows-amd64 +curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.9.0/kind-windows-amd64 Move-Item .\kind-windows-amd64.exe c:\some-dir-in-your-PATH\kind.exe # OR via Chocolatey (https://chocolatey.org/packages/kind) diff --git a/site/content/_index.md b/site/content/_index.md index a4a80c80ea..96344dbecd 100644 --- a/site/content/_index.md +++ b/site/content/_index.md @@ -6,7 +6,7 @@ tile: kind [kind] is a tool for running local Kubernetes clusters using Docker container "nodes". kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI. -If you have [go] \([1.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/kind@v0.8.1 && kind create cluster` is all you need! +If you have [go] \([1.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/kind@v0.9.0 && kind create cluster` is all you need! diff --git a/site/content/docs/user/quick-start.md b/site/content/docs/user/quick-start.md index 6f7cdfed83..e22cee910a 100644 --- a/site/content/docs/user/quick-start.md +++ b/site/content/docs/user/quick-start.md @@ -18,7 +18,7 @@ This guide covers getting started with the `kind` command. but you will not be able to perform some of the examples in our docs without it. To install `kubectl` see the upstream reference here https://kubernetes.io/docs/tasks/tools/install-kubectl/ -You can either install kind with `GO111MODULE="on" go get sigs.k8s.io/kind@v0.8.1` or clone this repo +You can either install kind with `GO111MODULE="on" go get sigs.k8s.io/kind@v0.9.0` or clone this repo and run `make build` from the repository. Please use the latest Go when installing KIND from source, ideally go 1.14 or greater. @@ -41,7 +41,7 @@ into your `$PATH`. On Linux: {{< codeFromInline lang="bash" >}} -curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.8.1/kind-linux-amd64 +curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.9.0/kind-linux-amd64 chmod +x ./kind mv ./kind /some-dir-in-your-PATH/kind {{< /codeFromInline >}} @@ -52,13 +52,13 @@ On Mac (homebrew): {{< /codeFromInline >}} or {{< codeFromInline lang="bash" >}} -curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.8.1/kind-darwin-amd64 +curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.9.0/kind-darwin-amd64 {{< /codeFromInline >}} On Windows: {{< codeFromInline lang="powershell" >}} -curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.8.1/kind-windows-amd64 +curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.9.0/kind-windows-amd64 Move-Item .\kind-windows-amd64.exe c:\some-dir-in-your-PATH\kind.exe {{< /codeFromInline >}}