From 46fd9c7ce186234baef9878ab55fddbf6cbf65b1 Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 13 Mar 2025 16:25:18 +0100 Subject: [PATCH] chore: Update postgresql chart --- .../examples/getting_started/getting_started.sh | 13 ++++++------- .../examples/getting_started/getting_started.sh.j2 | 13 ++++++------- docs/templating_vars.yaml | 1 + 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/docs/modules/druid/examples/getting_started/getting_started.sh b/docs/modules/druid/examples/getting_started/getting_started.sh index 68051249..c89e559a 100755 --- a/docs/modules/druid/examples/getting_started/getting_started.sh +++ b/docs/modules/druid/examples/getting_started/getting_started.sh @@ -102,13 +102,12 @@ kubectl rollout status --watch statefulset/simple-hdfs-namenode-default --timeou echo "Installing PostgreSQL for Druid" # tag::helm-install-postgres[] -helm install postgresql-druid \ ---repo https://charts.bitnami.com/bitnami postgresql \ ---version 16.1.2 \ ---set auth.database=druid \ ---set auth.username=druid \ ---set auth.password=druid \ ---wait +helm install postgresql-druid oci://registry-1.docker.io/bitnamicharts/postgresql \ + --version 16.5.0 \ + --set auth.database=druid \ + --set auth.username=druid \ + --set auth.password=druid \ + --wait # end::helm-install-postgres[] echo "Install DruidCluster from druid.yaml" diff --git a/docs/modules/druid/examples/getting_started/getting_started.sh.j2 b/docs/modules/druid/examples/getting_started/getting_started.sh.j2 index b944827f..0f03cf4d 100755 --- a/docs/modules/druid/examples/getting_started/getting_started.sh.j2 +++ b/docs/modules/druid/examples/getting_started/getting_started.sh.j2 @@ -102,13 +102,12 @@ kubectl rollout status --watch statefulset/simple-hdfs-namenode-default --timeou echo "Installing PostgreSQL for Druid" # tag::helm-install-postgres[] -helm install postgresql-druid \ ---repo https://charts.bitnami.com/bitnami postgresql \ ---version 16.1.2 \ ---set auth.database=druid \ ---set auth.username=druid \ ---set auth.password=druid \ ---wait +helm install postgresql-druid oci://registry-1.docker.io/bitnamicharts/postgresql \ + --version {{ versions.postgresql }} \ + --set auth.database=druid \ + --set auth.username=druid \ + --set auth.password=druid \ + --wait # end::helm-install-postgres[] echo "Install DruidCluster from druid.yaml" diff --git a/docs/templating_vars.yaml b/docs/templating_vars.yaml index 3e46a32e..52a40f1e 100644 --- a/docs/templating_vars.yaml +++ b/docs/templating_vars.yaml @@ -9,3 +9,4 @@ versions: zookeeper: 0.0.0-dev hdfs: 0.0.0-dev druid: 0.0.0-dev + postgresql: 16.5.0