Skip to content

Commit

Permalink
[AAP-21618] - Update eda-server dev env and docs to use PostgreSQL 15 (
Browse files Browse the repository at this point in the history
…#726)

Signed-off-by: Mauricio Magnani <[email protected]>
Co-authored-by: Alex <[email protected]>
  • Loading branch information
msmagnanijr and Alex-Izquierdo authored Mar 12, 2024
1 parent 4194433 commit abfb35d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
EDA_DB_PASSWORD: 'secret'
services:
postgres:
image: 'quay.io/sclorg/postgresql-13-c9s:latest'
image: 'quay.io/sclorg/postgresql-15-c9s:latest'
env:
POSTGRESQL_USER: eda
POSTGRESQL_PASSWORD: secret
Expand Down
2 changes: 1 addition & 1 deletion scripts/eda_kube.sh
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ clean-deployment() {
log-debug "${NAMESPACE} does not exist"
fi

for image in redis:7 postgres:13 aap-eda:latest eda-ui:latest; do
for image in redis:7 postgres:15 aap-eda:latest eda-ui:latest; do
remove-image "${image}"
done

Expand Down
2 changes: 1 addition & 1 deletion tools/deploy/postgres/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
value: secret
- name: POSTGRESQL_ADMIN_PASSWORD
value: secret
image: quay.io/sclorg/postgresql-13-c9s:latest
image: quay.io/sclorg/postgresql-15-c9s:latest
name: postgres
ports:
- containerPort: 5432
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/docker-compose-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ services:
restart: always

postgres:
image: 'quay.io/sclorg/postgresql-13-c9s:latest'
image: 'quay.io/sclorg/postgresql-15-c9s:latest'
environment:
POSTGRESQL_USER: eda
POSTGRESQL_PASSWORD: secret
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/docker-compose-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ services:
condition: service_healthy

postgres:
image: 'quay.io/sclorg/postgresql-13-c9s:latest'
image: 'quay.io/sclorg/postgresql-15-c9s:latest'
environment:
POSTGRESQL_USER: eda
POSTGRESQL_PASSWORD: secret
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/docker-compose-stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ services:
restart: always

postgres:
image: 'quay.io/sclorg/postgresql-13-c9s:latest'
image: 'quay.io/sclorg/postgresql-15-c9s:latest'
environment:
POSTGRESQL_USER: eda
POSTGRESQL_PASSWORD: secret
Expand Down

0 comments on commit abfb35d

Please sign in to comment.