Skip to content

Commit dca7340

Browse files
Update common kind and envtest for e2e tests
1 parent c0a8c3f commit dca7340

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/test-sample-go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
env:
1212
KIND_K8S_VERSION: v1.29.0
1313
tools_k8s_version: 1.29.0
14-
kind_version: 0.20.0
14+
kind_version: 0.22.0
1515
steps:
1616
- name: Clone the code
1717
uses: actions/checkout@v4

test/common.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ function convert_to_tools_ver {
3131
"1.26") echo "1.26.0";;
3232
"1.27") echo "1.27.1";;
3333
"1.28") echo "1.28.3";;
34+
"1.29") echo "1.29.0";;
3435
*)
3536
echo "k8s version $k8s_ver not supported"
3637
exit 1
@@ -50,9 +51,9 @@ if [ -n "$TRACE" ]; then
5051
set -x
5152
fi
5253

53-
export KIND_K8S_VERSION="${KIND_K8S_VERSION:-"v1.28.0"}"
54+
export KIND_K8S_VERSION="${KIND_K8S_VERSION:-"v1.29.0"}"
5455
tools_k8s_version=$(convert_to_tools_ver "${KIND_K8S_VERSION#v*}")
55-
kind_version=0.20.0
56+
kind_version=0.22.0
5657
goarch=amd64
5758

5859
if [[ "$OSTYPE" == "linux-gnu" ]]; then

0 commit comments

Comments
 (0)