From 548350f9ceed8c4ff5baca2b19bad951a136018b Mon Sep 17 00:00:00 2001 From: Krystof Stekovic Date: Tue, 29 Oct 2024 13:27:26 +0100 Subject: [PATCH] [WFLY-19898] update version of the postgresql --- todo-backend/charts/Chart.yaml | 2 +- todo-backend/charts/values.yaml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/todo-backend/charts/Chart.yaml b/todo-backend/charts/Chart.yaml index 124cce3c6d..b8750279ba 100644 --- a/todo-backend/charts/Chart.yaml +++ b/todo-backend/charts/Chart.yaml @@ -7,7 +7,7 @@ appVersion: 31.0.0.Final dependencies: - name: postgresql repository: https://charts.bitnami.com/bitnami - version: 13.1.5 + version: 16.2.2 - name: wildfly repository: http://docs.wildfly.org/wildfly-charts/ version: 2.3.2 \ No newline at end of file diff --git a/todo-backend/charts/values.yaml b/todo-backend/charts/values.yaml index 84b1697f16..7ecbf40200 100644 --- a/todo-backend/charts/values.yaml +++ b/todo-backend/charts/values.yaml @@ -46,8 +46,7 @@ wildfly: value: "96" initContainers: - name: check-db-ready - image: postgres:9.6.5 + image: docker.io/bitnami/postgresql:17.2.0-debian-12-r0 command: [ 'sh', '-c', - 'until pg_isready -h todo-backend-postgresql -p 5432; + 'until pg_isready -h todo-backend-postgresql -p 5432; do echo waiting for database; sleep 2; done;' ] -