Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix overlay e2e test caused by troublesome bitnami postgres image #1677

Merged
merged 3 commits into from
Jul 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions e2e/overlay/helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ releases:
e2e-run: '{{ requiredEnv "E2E_RUN_ID" }}'
e2e-ctx: '{{ requiredEnv "E2E_CONTEXT_ID" }}'
chart: bitnami/postgresql
# There were a few issues around versions 12.6.1->12.6.2 of the postgresql image. It manifested here as problems
# related to duplicate kube namespaces (possibly due to being unable to clear up previous namespace between runs).
# Locking the version to a known working image.
# https://artifacthub.io/packages/helm/bitnami/postgresql
# https://github.com/bitnami/charts/commit/262f4f1d2906226cee8cabb49c8fedf97ecc30e4
# https://github.com/bitnami/charts/commit/d6234d8b8921470066e567832660164d84192975
version: 12.6.0
hooks:
- events: ["presync"]
showlogs: true
Expand Down