Skip to content

Commit 28edd20

Browse files
Chore platform backend db postgres18 (#7)
* chore(db): upgrade platform-backend postgres image to 18.3
1 parent 9052670 commit 28edd20

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

.github/workflows/portalbackend-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ master ]
88

99
jobs:
10-
portal-backend-integration-tests:
10+
platform-backend-integration-tests:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout the repository

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ logs/
66
Federation/data
77
Federation/logs
88
Federation/.combined_env
9-
tests/portal_backend_integration_tests/setup/poetry.lock
109
federated
1110
local
1211
venv/

deployment/dev/.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Versions
22
EXAFLOW=1.0.0
3-
PLATFORM_BACKEND=9.0.1
3+
PLATFORM_BACKEND=9.1.0
44
PLATFORM_UI=1.0.0
5-
MIP=9.0.0
5+
MIP=9.0.1
66

77
# Toggle authentication
88
AUTHENTICATION=0

deployment/dev/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ services:
115115
ipv4_address: 172.28.0.12
116116

117117
platform_backend_db:
118-
image: postgres:11.20-alpine
118+
image: postgres:18.3-alpine
119119
volumes:
120-
- ./.stored_data/platform_backenddb:/var/lib/postgresql/data
120+
- ./.stored_data/platform_backenddb:/var/lib/postgresql
121121
- ../kubernetes/files/platform-backend-db-init.sh:/docker-entrypoint-initdb.d/10-bootstrap-platform-db.sh:ro
122122
hostname: platform_backend_db
123123
environment:

deployment/kubernetes/templates/platform-backend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ spec:
250250
- containerPort: 5432
251251
volumeMounts:
252252
- name: platform-backend-db-claim0
253-
mountPath: /var/lib/postgresql/data
253+
mountPath: /var/lib/postgresql
254254
- name: platform-backend-db-init
255255
mountPath: /opt/platform-backend-db-init
256256
readOnly: true

deployment/kubernetes/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cluster:
2-
namespace: default
2+
namespace: federation-handson
33
managed: true
44
storageClasses:
55
local: k8s-local-storage
@@ -9,7 +9,7 @@ network:
99
link: proxied
1010
externalProtocol: https
1111
publicProtocol: https
12-
publicHost: default
12+
publicHost: https://handson.hbpmip.link
1313
ingress:
1414
enabled: true
1515
className: nginx-public
@@ -24,7 +24,7 @@ engines:
2424
tag: 1.0.0
2525
mip:
2626
displayName: MIP
27-
version: 9.0.0
27+
version: 9.0.1
2828
datacatalog:
2929
protocol: https
3030
host: ""
@@ -55,7 +55,7 @@ platform-ui:
5555
platform-backend:
5656
image:
5757
repository: hbpmip/platform-backend
58-
tag: 9.0.1
58+
tag: 9.1.0
5959
config:
6060
logLevel: INFO
6161
logLevelFramework: INFO
@@ -71,7 +71,7 @@ platform-backend:
7171
platformBackendDatabase:
7272
image:
7373
repository: postgres
74-
tag: 11.3-alpine
74+
tag: 18.3-alpine
7575
persistence:
7676
localPath: /opt/mip-deployment/.stored_data/platform_backenddb
7777
size: 1Gi

documentation/Components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ These are the repositories with all the independent components that MIP is compo
44
- The "Deployment Stack", which enable the installation of the MIP both locally and in a federation is part of the current repo. [Deployment Package](../deployment)
55
- The "MIP Infrastructure", MIP KaaS deployment infrastructure repo based on ArgoCD deployments [https://github.com/Medical-Informatics-Platform/mip-infra](https://github.com/Medical-Informatics-Platform/mip-infra)
66
- The "Platform-UI" is the interface of MIP: [https://github.com/Medical-Informatics-Platform/platform-ui/tree/1.0.0](https://github.com/Medical-Informatics-Platform/platform-ui/tree/1.0.0)
7-
- The "Platform Backend API" supports the Web App : [https://github.com/Medical-Informatics-Platform/platform-backend/tree/9.0.1](https://github.com/Medical-Informatics-Platform/platform-backend/tree/9.0.1)
7+
- The "Platform Backend API" supports the Web App : [https://github.com/Medical-Informatics-Platform/platform-backend/tree/9.1.0](https://github.com/Medical-Informatics-Platform/platform-backend/tree/9.1.0)
88
- The "Exaflow Analysis Engine" offers federated analysis capabilities: [https://github.com/madgik/exaflow/tree/1.0.0](https://github.com/madgik/exaflow/tree/1.0.0)
99

1010
#### Additional Standalone Tools:

0 commit comments

Comments
 (0)