Skip to content

Commit

Permalink
tests: upgrade GKE test cluster to v1.32 (#3504)
Browse files Browse the repository at this point in the history
<!--Thanks for your contribution. See [CONTRIBUTING](CONTRIBUTING.md)
    for Pulumi's contribution guidelines.

    Help us merge your changes more quickly by adding more details such
    as labels, milestones, and reviewers.-->

### Proposed changes

GKE has dropped support for v1.28 clusters, causing CI to fail when
creating a test cluster. This PR upgrades our test clusters to use GKE
v1.32.

### Related issues (optional)

Closes: #3503
  • Loading branch information
rquitales authored Feb 19, 2025
1 parent e67c0c1 commit 86c0aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ci-cluster/gke.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export class GkeCluster extends pulumi.ComponentResource {
opts: pulumi.ComponentResourceOptions = {}) {
super("pulumi-kubernetes:ci:GkeCluster", name, {}, opts);

// Use the latest 1.28.x engine version.
const engineVersion = "1.28";
// Use the latest 1.32.x engine version.
const engineVersion = "1.32";

// Create the GKE cluster.
const k8sCluster = new gcp.container.Cluster("ephemeral-ci-cluster", {
Expand Down

0 comments on commit 86c0aa1

Please sign in to comment.