Skip to content

Commit 43ead8a

Browse files
committed
feat(helm): use PostgreSQL 14.10 in local dev deployment (#774)
Closes #744
1 parent 07a191f commit 43ead8a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

helm/configurations/values-dev.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# REANA components pointing to `latest`, locally built master branch
22

33
components:
4+
reana_db:
5+
image: docker.io/library/postgres:14.10
46
reana_server:
57
image: docker.io/reanahub/reana-server
68
environment:

reana/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@
223223

224224
DOCKER_PREFETCH_IMAGES = {
225225
"reana": [
226-
"docker.io/library/postgres:12.13",
226+
"docker.io/library/postgres:14.10",
227227
"docker.io/kozea/wdb:3.2.5",
228228
"docker.io/maildev/maildev:1.1.0",
229229
"docker.io/library/redis:5.0.5",

reana/reana_dev/python.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def python_unit_tests(
140140
run_command(
141141
f"docker stop postgres__{component}\n"
142142
f"docker run --rm --name postgres__{component} -p 5432:5432 "
143-
"-e POSTGRES_PASSWORD=mysecretpassword -d docker.io/library/postgres:12.13"
143+
"-e POSTGRES_PASSWORD=mysecretpassword -d docker.io/library/postgres:14.10"
144144
)
145145

146146
env_pytestarg = ""

0 commit comments

Comments
 (0)