Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Database upgrade #115

Merged
merged 6 commits into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]
- postgresql DB upgrade

## [1.5.4] - 2024-03-06
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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"
2 changes: 1 addition & 1 deletion charts/orchestrator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.x.x
version: 12.x.x
6 changes: 3 additions & 3 deletions charts/orchestrator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 4 additions & 4 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"
password: "default"
postgresPassword: "default"
database: "postgres"
username: "testuser"
password: ""
postgresPassword: ""
database: "testdb"
port: 5432
existingSecret: ""

Expand Down
Loading