Skip to content

Commit

Permalink
db upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
adkumar1 committed Mar 8, 2024
1 parent 20492c3 commit c48c1ad
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [1.5.5] - 2024-03-08
### Fixed
- Postgresql DB upgrade

## [1.5.4] - 2024-03-06
### Fixed
- Fixed CVE-2024-22234 and CVE-2024-22243
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ This service will help service provider to set up DFT/SDE with EDC and EDC as se
### Software Version

```shell
Application version: 1.5.4
Helm release version: 1.5.4
Application version: 1.5.5
Helm release version: 1.5.5
```

# Container images
Expand Down Expand Up @@ -50,7 +50,7 @@ You can find the standard credentials as well as further database configurations

### Prerequisites
- JDK18
- Postgres 13.2
- Postgres 15.4
- Docker
- kubeapps
- Helm chart for Package installation
Expand Down
6 changes: 3 additions & 3 deletions charts/orchestrator/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.9.13
digest: sha256:e99b8ccc89621db99f5ff92fbdb178a236b95624fea6838606f4f6d495916055
generated: "2023-02-01T17:13:01.090918+05:30"
version: 12.12.10
digest: sha256:3e50f191dcf868228a07a26896bd4759db58461fac5fe593ebadd95d18c4e8e1
generated: "2024-03-08T12:02:16.266308+05:30"
6 changes: 3 additions & 3 deletions charts/orchestrator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ sources:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.5.4
version: 1.5.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.5.4"
appVersion: "1.5.5"

dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.x.x
version: 12.x.x
8 changes: 4 additions & 4 deletions charts/orchestrator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# managed-service-orchestrator

![Version: 1.5.4](https://img.shields.io/badge/Version-1.5.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.4](https://img.shields.io/badge/AppVersion-1.5.4-informational?style=flat-square)
![Version: 1.5.5](https://img.shields.io/badge/Version-1.5.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.5](https://img.shields.io/badge/AppVersion-1.5.5-informational?style=flat-square)

This service will help service provider to set up DFT/SDE with EDC and EDC as service in service provider environment.

Expand All @@ -12,7 +12,7 @@ This service will help service provider to set up DFT/SDE with EDC and EDC as se

| Repository | Name | Version |
|------------|------|---------|
| https://charts.bitnami.com/bitnami | postgresql | 11.x.x |
| https://charts.bitnami.com/bitnami | postgresql | 12.x.x |

## Values

Expand Down Expand Up @@ -40,12 +40,12 @@ This service will help service provider to set up DFT/SDE with EDC and EDC as se
| podAnnotations | object | `{}` | |
| podSecurityContext.fsGroup | int | `2000` | |
| portContainer | int | `9999` | |
| postgresql.auth.database | string | `"postgres"` | |
| postgresql.auth.database | string | `"testdb"` | |
| postgresql.auth.existingSecret | string | `""` | |
| postgresql.auth.password | string | `"default"` | |
| postgresql.auth.port | int | `5432` | |
| postgresql.auth.postgresPassword | string | `"default"` | |
| postgresql.auth.username | string | `"postgres"` | |
| postgresql.auth.username | string | `"testuser"` | |
| postgresql.enabled | bool | `true` | |
| postgresql.fullnameOverride | string | `"postgresql"` | |
| probe.endpoint | string | `"/api/healthz"` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/orchestrator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ postgresql:
enabled: true
fullnameOverride: "postgresql"
auth:
username: "postgres"
username: "testuser"
password: "default"
postgresPassword: "default"
database: "postgres"
database: "testdb"
port: 5432
existingSecret: ""

Expand Down

0 comments on commit c48c1ad

Please sign in to comment.