Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions deploy/helm/openshell/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
repository: https://charts.bitnami.com/bitnami
version: 18.6.7
digest: sha256:e4df764483edb0695ac56dd4e27eb3a225a9c0b0ef52a8b60e3e0b51e36153ab
generated: "2026-05-28T18:05:12.507876-04:00"
digest: sha256:ad5d03a28d06bb10dfdd9e082284efe8d487892625b28e46cada24c4f9a29750
generated: "2026-06-09T18:24:58.974269-04:00"
2 changes: 1 addition & 1 deletion deploy/helm/openshell/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ appVersion: "0.0.0"
dependencies:
- name: postgresql
version: 18.6.7
repository: oci://registry-1.docker.io/bitnamicharts
repository: https://charts.bitnami.com/bitnami
condition: postgres.enabled
alias: postgres
3 changes: 2 additions & 1 deletion e2e/rust/e2e-openshift.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ EXTERNAL_PG_DATABASE="openshell"
EXTERNAL_PG_USERNAME="openshell"

log "Deploying standalone PostgreSQL as external database..."
helm install "$EXTERNAL_PG_RELEASE" oci://registry-1.docker.io/bitnamicharts/postgresql \
helm repo add bitnami https://charts.bitnami.com/bitnami 2>/dev/null || true
helm install "$EXTERNAL_PG_RELEASE" bitnami/postgresql --version 18.6.7 \
-n "$NAMESPACE" \
--set auth.username="$EXTERNAL_PG_USERNAME" \
--set auth.password="$EXTERNAL_PG_PASSWORD" \
Expand Down
3 changes: 2 additions & 1 deletion e2e/with-kube-gateway.sh
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ scenario_cleanup_release() {
scenario_deploy_external_pg() {
local pg_host pg_uri
echo "==> Deploying standalone PostgreSQL as external database..."
helmctl install pg-external oci://registry-1.docker.io/bitnamicharts/postgresql \
helmctl repo add bitnami https://charts.bitnami.com/bitnami 2>/dev/null || true
helmctl install pg-external bitnami/postgresql --version 18.6.7 \
--namespace "${NAMESPACE}" \
--set auth.username=openshell \
--set auth.password=ext-test-password \
Expand Down
Loading