Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#388 from codenrhoden/update-kind
Browse files Browse the repository at this point in the history
Update KIND references to v0.4.0
  • Loading branch information
k8s-ci-robot authored Jul 12, 2019
2 parents a0d5c44 + 7d6fdc4 commit 1429396
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@ You can install Kind with the following:

```bash
# Linux
$ curl -Lo ./kind-linux-amd64 https://github.com/kubernetes-sigs/kind/releases/download/v0.3.0/kind-linux-amd64
$ curl -Lo ./kind-linux-amd64 https://github.com/kubernetes-sigs/kind/releases/download/v0.4.0/kind-linux-amd64
$ chmod +x ./kind-linux-amd64
$ mv ./kind-linux-amd64 /usr/local/bin/kind

# Darwin
$ curl -Lo ./kind-darwin-amd64 https://github.com/kubernetes-sigs/kind/releases/download/v0.3.0/kind-darwin-amd64
$ curl -Lo ./kind-darwin-amd64 https://github.com/kubernetes-sigs/kind/releases/download/v0.4.0/kind-darwin-amd64
$ chmod +x ./kind-darwin-amd64
$ mv ./kind-darwin-amd64 /usr/local/bin/kind
```

If you have a Go installed on your machine, you can install Kind with the following:

```bash
GO111MODULE="on" go get -mod readonly sigs.k8s.io/kind@v0.3.0
GO111MODULE="on" go get -mod readonly sigs.k8s.io/kind@v0.4.0
```

#### clusterctl
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e/create_kind_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -o nounset
set -o pipefail
set -o xtrace

KIND_VERSION="v0.3.0"
KIND_VERSION="v0.4.0"

install_kind() {
wget "https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-linux-amd64" \
Expand Down
4 changes: 2 additions & 2 deletions scripts/e2e/kind_config.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
kind: Cluster
apiVersion: kind.sigs.k8s.io/v1alpha3
networking:
apiServerAddress: 0.0.0.0
apiServerAddress: ${bootstrap_vm_ip}
kubeadmConfigPatches:
- |
apiVersion: kubeadm.k8s.io/v1beta1
apiVersion: kubeadm.k8s.io/v1beta2
kind: ClusterConfiguration
metadata:
name: config
Expand Down

0 comments on commit 1429396

Please sign in to comment.