Skip to content

Commit

Permalink
Merge pull request #88 from Demonsthere/chore/kind-0.11
Browse files Browse the repository at this point in the history
chore: update kind
  • Loading branch information
Demonsthere authored Sep 13, 2021
2 parents f48baff + b99e763 commit 273922d
Show file tree
Hide file tree
Showing 5 changed files with 18 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
1 change: 1 addition & 0 deletions config/default/manager_image_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ spec:
# Change the value of image field below to your controller image URL
- image: controller:latest
name: manager
imagePullPolicy: IfNotPresent
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.15
require (
github.com/go-logr/logr v0.4.0
github.com/go-openapi/runtime v0.19.28
github.com/onsi/ginkgo v1.16.2
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.10.2
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.6.1
Expand All @@ -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 273922d

Please sign in to comment.