Skip to content

Commit

Permalink
fix: update kind image for e2e tests and minor fix
Browse files Browse the repository at this point in the history
This patch performs the following changes:

1. Bump the default image version for e2e tests to v1.29.2. Current
image doesn't work with kind v0.22.0.
2. Delete an excessive whitespace from the Makefile.

Signed-off-by: Oleh Neichev <oleg.neichev@gmail.com>
  • Loading branch information
BonySmoke authored and kkourt committed Apr 9, 2024
1 parent 0e9b07b commit 3f06c25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ docs:
kind:
./contrib/localdev/bootstrap-kind-cluster.sh

.PHONY: kind-install-tetragon
.PHONY: kind-install-tetragon
kind-install-tetragon:
./contrib/localdev/install-tetragon.sh --image cilium/tetragon:latest --operator cilium/tetragon-operator:latest

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/helpers/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ var (

func init() {
flag.StringVar(&clusterName, "cluster-name", "tetragon-ci", "Set the name of the k8s cluster being used")
flag.StringVar(&clusterImage, "cluster-image", "kindest/node:v1.24.7", "Set the node image for the kind cluster")
flag.StringVar(&clusterImage, "cluster-image", "kindest/node:v1.29.2", "Set the node image for the kind cluster")
}

// GetClusterName fetches the cluster name configured with -cluster-name or the temporary
Expand Down

0 comments on commit 3f06c25

Please sign in to comment.