Skip to content

Commit

Permalink
Upgrade postgres operator integration test to use v1.11.0 (#2891)
Browse files Browse the repository at this point in the history
The v1.7.0 version of the Zolando Posgres Operator chart is no longer
being hosted causing our CI tests to fail (eg.
https://github.com/pulumi/pulumi-kubernetes/actions/runs/8300755190/job/22843283137).
This PR bumps the chart version to a more recent 1.11.0. I've inspected
the new version to ensure that the intent of the test isn't lost by
upgrading to this version.
  • Loading branch information
rquitales authored Mar 19, 2024
1 parent 0afc560 commit 1199243
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/sdk/nodejs/examples/helm-release-crd/step1/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as k8s from "@pulumi/kubernetes";
const postgresOperator = new k8s.helm.v3.Release("postgres-operator", {
name: "postgres-operator",
chart: "postgres-operator",
version: "1.7.0",
version: "1.11.0",
repositoryOpts: {
repo: "https://opensource.zalando.com/postgres-operator/charts/postgres-operator/",
},
Expand Down
2 changes: 1 addition & 1 deletion tests/sdk/nodejs/examples/helm-release-crd/step2/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as k8s from "@pulumi/kubernetes";
const postgresOperator = new k8s.helm.v3.Release("postgres-operator", {
name: "postgres-operator",
chart: "postgres-operator",
version: "1.7.0",
version: "1.11.0",
repositoryOpts: {
repo: "https://opensource.zalando.com/postgres-operator/charts/postgres-operator/",
},
Expand Down

0 comments on commit 1199243

Please sign in to comment.