diff --git a/.github/workflows/e2e-elasticsearch.yaml b/.github/workflows/e2e-elasticsearch.yaml index ef419f026..43956b24f 100644 --- a/.github/workflows/e2e-elasticsearch.yaml +++ b/.github/workflows/e2e-elasticsearch.yaml @@ -21,7 +21,7 @@ jobs: matrix: kube-version: - "1.19" - - "1.23" + - "1.24" name: Run Elasticsearch E2E tests steps: - name: "Check out code into the Go module directory" diff --git a/.github/workflows/e2e-examples.yaml b/.github/workflows/e2e-examples.yaml index f86183f4b..d8cff3245 100644 --- a/.github/workflows/e2e-examples.yaml +++ b/.github/workflows/e2e-examples.yaml @@ -21,7 +21,7 @@ jobs: matrix: kube-version: - "1.19" - - "1.23" + - "1.24" name: Run examples E2E tests steps: - name: "Check out code into the Go module directory" diff --git a/.github/workflows/e2e-generate.yaml b/.github/workflows/e2e-generate.yaml index 24b172fe6..be0c75609 100644 --- a/.github/workflows/e2e-generate.yaml +++ b/.github/workflows/e2e-generate.yaml @@ -21,7 +21,7 @@ jobs: matrix: kube-version: - "1.19" - - "1.23" + - "1.24" name: Run generate E2E tests steps: - name: "Check out code into the Go module directory" diff --git a/.github/workflows/e2e-miscellaneous.yaml b/.github/workflows/e2e-miscellaneous.yaml index 74ae574f7..e9cfd34e0 100644 --- a/.github/workflows/e2e-miscellaneous.yaml +++ b/.github/workflows/e2e-miscellaneous.yaml @@ -21,7 +21,7 @@ jobs: matrix: kube-version: - "1.19" - - "1.23" + - "1.24" name: Run miscellaneous E2E tests steps: - name: "Check out code into the Go module directory" diff --git a/.github/workflows/e2e-sidecar.yaml b/.github/workflows/e2e-sidecar.yaml index 866162b03..5d0ba4ff9 100644 --- a/.github/workflows/e2e-sidecar.yaml +++ b/.github/workflows/e2e-sidecar.yaml @@ -21,7 +21,7 @@ jobs: matrix: kube-version: - "1.19" - - "1.23" + - "1.24" name: Run sidecar E2E tests steps: - name: "Check out code into the Go module directory" diff --git a/.github/workflows/e2e-streaming.yaml b/.github/workflows/e2e-streaming.yaml index 31ae6603e..d9d3ca4ab 100644 --- a/.github/workflows/e2e-streaming.yaml +++ b/.github/workflows/e2e-streaming.yaml @@ -21,7 +21,7 @@ jobs: matrix: kube-version: - "1.19" - - "1.23" + - "1.24" name: Run streaming E2E tests steps: - name: "Check out code into the Go module directory" diff --git a/.github/workflows/e2e-ui.yaml b/.github/workflows/e2e-ui.yaml index 87cb06f92..1a74fcb1a 100644 --- a/.github/workflows/e2e-ui.yaml +++ b/.github/workflows/e2e-ui.yaml @@ -21,7 +21,7 @@ jobs: matrix: kube-version: - "1.19" - - "1.23" + - "1.24" name: UI E2E tests steps: - name: "Check out code into the Go module directory" diff --git a/.github/workflows/e2e-upgrade.yaml b/.github/workflows/e2e-upgrade.yaml index ccbf0c686..ae1efc6a5 100644 --- a/.github/workflows/e2e-upgrade.yaml +++ b/.github/workflows/e2e-upgrade.yaml @@ -21,7 +21,7 @@ jobs: matrix: kube-version: - "1.19" - - "1.23" + - "1.24" name: Run upgrade E2E tests steps: - name: "Check out code into the Go module directory" diff --git a/hack/install/install-kind.sh b/hack/install/install-kind.sh index 19eb9b44b..5f4f4b143 100755 --- a/hack/install/install-kind.sh +++ b/hack/install/install-kind.sh @@ -1,5 +1,5 @@ #!/bin/bash -VERSION="0.11.1" +VERSION="0.13.0" echo "Installing kind" diff --git a/kind-1.24.yaml b/kind-1.24.yaml new file mode 100644 index 000000000..08694ee8a --- /dev/null +++ b/kind-1.24.yaml @@ -0,0 +1,18 @@ +kind: Cluster +apiVersion: kind.x-k8s.io/v1alpha4 +nodes: +- role: control-plane + image: kindest/node:v1.24.0@sha256:406fd86d48eaf4c04c7280cd1d2ca1d61e7d0d61ddef0125cb097bc7b82ed6a1 + kubeadmConfigPatches: + - | + kind: InitConfiguration + nodeRegistration: + kubeletExtraArgs: + node-labels: "ingress-ready=true" + extraPortMappings: + - containerPort: 80 + hostPort: 80 + protocol: TCP + - containerPort: 443 + hostPort: 443 + protocol: TCP