Skip to content

Commit 14d2e66

Browse files
committed
TEST/MEDIUM: test k8s 1.33 version
1 parent 85c6154 commit 14d2e66

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/actions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
e2e:
129129
strategy:
130130
matrix:
131-
k8s-version: ["v1.32.2"]
131+
k8s-version: ["v1.33.1"]
132132
needs: ["build"]
133133
runs-on: ubuntu-latest
134134
steps:
@@ -147,12 +147,12 @@ jobs:
147147
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
148148
restore-keys: |
149149
${{ runner.os }}-go-
150-
- uses: engineerd/setup-kind@v0.5.0
150+
- uses: engineerd/setup-kind@v0.6.2
151151
with:
152152
name: dev
153153
config: deploy/tests/kind-config.yaml
154154
image: kindest/node:${{ matrix.k8s-version }}
155-
version: v0.27.0
155+
version: v0.29.0
156156
- name: Setup
157157
run: CI_ENV=github deploy/tests/create.sh
158158
- name: Run parallel e2e tests

.gitlab-ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ stages:
99
- e2e_k8s_32
1010
- e2e_crd_versions
1111
variables:
12-
KIND: v0.27.0
12+
KIND: v0.29.0
1313
DOCKER_HOST: tcp://docker:2375
1414
DOCKER_DRIVER: overlay2
1515
GO_VERSION: "1.24"
16-
DOCKER_VERSION: "27.0"
16+
DOCKER_VERSION: "28.1"
1717
diff:
1818
stage: diff
1919
rules:
@@ -179,7 +179,7 @@ docker-build:
179179
- docker image tag $CI_REGISTRY_GO/haproxytech/proxy-protocol:latest haproxytech/proxy-protocol:latest
180180
- wget -nv -O /usr/local/bin/kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND}/kind-linux-amd64
181181
- chmod +x /usr/local/bin/kind
182-
- wget -nv -O /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/${KUBECTL}/bin/linux/amd64/kubectl
182+
- wget -nv -O /usr/local/bin/kubectl https://dl.k8s.io/release/${KUBECTL}/bin/linux/amd64/kubectl
183183
- chmod +x /usr/local/bin/kubectl
184184
- sed -i "s/K8S_VERSION/$K8S_VERSION/g" ".gitlab/kind-config.yaml"
185185
- sed -i "s/KUBEADM_VER/$KUBEADM_VER/g" ".gitlab/kind-config.yaml"
@@ -210,29 +210,29 @@ e2e_k8s_30:
210210
stage: e2e_k8s_30
211211
needs: ["docker-build"]
212212
variables:
213-
K8S_VERSION: v1.30.10
213+
K8S_VERSION: v1.31.9
214214
KUBEADM_VER: v1beta3
215-
KUBECTL: v1.30.4
215+
KUBECTL: v1.31.0
216216
extends: .kind_deployment_schedules
217217
rules:
218218
- if: $CI_PIPELINE_SOURCE == "schedule" && $SCHEDULE_TYPE == 'weekly' && $SCHEDULE_DAY == 'monday'
219219
e2e_k8s_31:
220220
stage: e2e_k8s_31
221221
needs: ["docker-build"]
222222
variables:
223-
K8S_VERSION: v1.31.6
223+
K8S_VERSION: v1.32.5
224224
KUBEADM_VER: v1beta3
225-
KUBECTL: v1.31.0
225+
KUBECTL: v1.32.0
226226
extends: .kind_deployment_schedules
227227
rules:
228228
- if: $CI_PIPELINE_SOURCE == "schedule" && $SCHEDULE_TYPE == 'weekly' && $SCHEDULE_DAY == 'tuesday'
229229
e2e_crd_v1:
230230
stage: e2e_crd_versions
231231
needs: ["docker-build"]
232232
variables:
233-
K8S_VERSION: v1.32.2
233+
K8S_VERSION: v1.33.1
234234
KUBEADM_VER: v1beta3
235-
KUBECTL: v1.31.0
235+
KUBECTL: v1.33.1
236236
CRD_VERSION: v1
237237
extends: .kind_deployment_schedules
238238
rules:
@@ -241,7 +241,7 @@ e2e_k8s_32:
241241
stage: e2e_k8s_32
242242
needs: ["docker-build"]
243243
variables:
244-
K8S_VERSION: v1.32.2
244+
K8S_VERSION: v1.33.1
245245
KUBEADM_VER: v1beta3
246-
KUBECTL: v1.31.0
246+
KUBECTL: v1.33.1
247247
extends: .kind_deployment

deploy/tests/kind-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ networking:
66
kind: Cluster
77
nodes:
88
- role: control-plane
9-
image: kindest/node:v1.32.2
9+
image: kindest/node:v1.33.1
1010
extraPortMappings:
1111
- hostPort: 30080
1212
containerPort: 30080

0 commit comments

Comments
 (0)