Skip to content

Commit

Permalink
build: update kind to 0.11.1
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kotzbauer <christian.kotzbauer@gmail.com>
  • Loading branch information
ckotzbauer committed May 31, 2021
1 parent 45a8a29 commit 5102add
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.16.0'
go-version: '1.16'
- name: Checkout
uses: actions/checkout@v2
- name: Install Kubebuilder
Expand All @@ -28,14 +28,14 @@ jobs:
fail-fast: false
matrix:
kubernetes-version:
- 1.18.15
- 1.19.7
- 1.20.2
- 1.18.19
- 1.19.11
- 1.20.7
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.16.0'
go-version: '1.16'
- name: Checkout
uses: actions/checkout@v2
- uses: azure/setup-kubectl@v1
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.16.0'
go-version: '1.16'
- name: Checkout
uses: actions/checkout@v2
- name: Build docker-image
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ IMG ?= ckotzbauer/access-manager
CRD_OPTIONS ?= "crd:trivialVersions=true"

# default k8s version for e2e tests
K8S_VERSION ?= 1.20.2
K8S_VERSION ?= 1.20.7

# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
Expand Down Expand Up @@ -96,7 +96,7 @@ ifeq (, $(shell which kind))
KIND_TMP_DIR=$$(mktemp -d) ;\
cd $$KIND_TMP_DIR ;\
go mod init tmp ;\
go get sigs.k8s.io/kind@v0.10.0 ;\
go get sigs.k8s.io/kind@v0.11.1 ;\
rm -rf $$KIND_TMP_DIR ;\
}
KIND=$(GOBIN)/kind
Expand Down

0 comments on commit 5102add

Please sign in to comment.