Skip to content

Commit

Permalink
chore: update kind
Browse files Browse the repository at this point in the history
  • Loading branch information
Demonsthere committed Sep 13, 2021
1 parent f48baff commit 6a3a852
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 39 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- run:
name: Install Kind
command: |
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.10.0/kind-linux-amd64
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.11.1/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
- run:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ test: generate fmt vet manifests

# Start KIND pseudo-cluster
kind-start:
GO111MODULE=on go get "sigs.k8s.io/kind@v0.10.0" && kind create cluster
GO111MODULE=on go get "sigs.k8s.io/kind@v0.11.1" && kind create cluster

# Stop KIND pseudo-cluster
kind-stop:
GO111MODULE=on go get "sigs.k8s.io/kind@v0.10.0" && kind delete cluster
GO111MODULE=on go get "sigs.k8s.io/kind@v0.11.1" && kind delete cluster

# Deploy on KIND
# Ensures the controller image is built, deploys the image to KIND cluster along with necessary configuration
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ require (
k8s.io/client-go v0.20.2
k8s.io/utils v0.0.0-20210305010621-2afb4311ab10
sigs.k8s.io/controller-runtime v0.8.3
sigs.k8s.io/kind v0.10.0 // indirect
sigs.k8s.io/kind v0.11.1 // indirect
)
Loading

0 comments on commit 6a3a852

Please sign in to comment.