Skip to content

Commit

Permalink
feat(helm): use PostgreSQL 14.10 in local dev deployment (#774)
Browse files Browse the repository at this point in the history
Closes #744
  • Loading branch information
mdonadoni committed Feb 12, 2024
1 parent 07a191f commit 43ead8a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions helm/configurations/values-dev.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# REANA components pointing to `latest`, locally built master branch

components:
reana_db:
image: docker.io/library/postgres:14.10
reana_server:
image: docker.io/reanahub/reana-server
environment:
Expand Down
2 changes: 1 addition & 1 deletion reana/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@

DOCKER_PREFETCH_IMAGES = {
"reana": [
"docker.io/library/postgres:12.13",
"docker.io/library/postgres:14.10",
"docker.io/kozea/wdb:3.2.5",
"docker.io/maildev/maildev:1.1.0",
"docker.io/library/redis:5.0.5",
Expand Down
2 changes: 1 addition & 1 deletion reana/reana_dev/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def python_unit_tests(
run_command(
f"docker stop postgres__{component}\n"
f"docker run --rm --name postgres__{component} -p 5432:5432 "
"-e POSTGRES_PASSWORD=mysecretpassword -d docker.io/library/postgres:12.13"
"-e POSTGRES_PASSWORD=mysecretpassword -d docker.io/library/postgres:14.10"
)

env_pytestarg = ""
Expand Down

0 comments on commit 43ead8a

Please sign in to comment.