Skip to content

Commit 6344881

Browse files
committed
test: bump e2e gke k8s version to v1.32.5
Signed-off-by: Carlos Salas <[email protected]>
1 parent c99ca95 commit 6344881

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/e2e/config/gcp-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ providers:
8080
variables:
8181
KUBERNETES_VERSION: "v1.32.5"
8282
KUBERNETES_VERSION_MANAGEMENT: "v1.32.5"
83-
KUBERNETES_VERSION_GKE: "v1.32.4"
83+
KUBERNETES_VERSION_GKE: "v1.32.6"
8484
ETCD_VERSION_UPGRADE_TO: "3.5.16-0"
8585
COREDNS_VERSION_UPGRADE_TO: "v1.11.3"
8686
KUBERNETES_IMAGE_UPGRADE_FROM: "projects/k8s-staging-cluster-api-gcp/global/images/cluster-api-ubuntu-2204-v1-32-5-nightly"

test/e2e/e2e_gke_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var _ = Describe("GKE workload cluster creation", func() {
5555
Expect(bootstrapClusterProxy).ToNot(BeNil(), "Invalid argument. bootstrapClusterProxy can't be nil when calling %s spec", specName)
5656
Expect(os.MkdirAll(artifactFolder, 0o755)).To(Succeed(), "Invalid argument. artifactFolder can't be created for %s spec", specName)
5757

58-
Expect(e2eConfig.Variables).To(HaveKey(KubernetesVersion))
58+
Expect(e2eConfig.Variables).To(HaveKey(KubernetesVersionGKE))
5959

6060
clusterNamePrefix = fmt.Sprintf("%s-%s", specName, util.RandomString(6))
6161

@@ -158,7 +158,7 @@ var _ = Describe("GKE workload cluster creation", func() {
158158
Flavor: "ci-gke-autopilot",
159159
Namespace: namespace.Name,
160160
ClusterName: clusterName,
161-
KubernetesVersion: e2eConfig.MustGetVariable(KubernetesVersion),
161+
KubernetesVersion: e2eConfig.MustGetVariable(KubernetesVersionGKE),
162162
ControlPlaneMachineCount: ptr.To[int64](1),
163163
WorkerMachineCount: ptr.To[int64](0),
164164
},
@@ -184,7 +184,7 @@ var _ = Describe("GKE workload cluster creation", func() {
184184
Flavor: "ci-gke-custom-subnet",
185185
Namespace: namespace.Name,
186186
ClusterName: clusterName,
187-
KubernetesVersion: e2eConfig.MustGetVariable(KubernetesVersion),
187+
KubernetesVersion: e2eConfig.MustGetVariable(KubernetesVersionGKE),
188188
ControlPlaneMachineCount: ptr.To[int64](1),
189189
WorkerMachineCount: ptr.To[int64](3),
190190
ClusterctlVariables: map[string]string{
@@ -214,7 +214,7 @@ var _ = Describe("GKE workload cluster creation", func() {
214214
Flavor: "ci-gke-autopilot-topology",
215215
Namespace: namespace.Name,
216216
ClusterName: clusterName,
217-
KubernetesVersion: e2eConfig.MustGetVariable(KubernetesVersion),
217+
KubernetesVersion: e2eConfig.MustGetVariable(KubernetesVersionGKE),
218218
ControlPlaneMachineCount: ptr.To[int64](1),
219219
WorkerMachineCount: ptr.To[int64](0),
220220
},

0 commit comments

Comments
 (0)