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

[5°] - Release/v1.3.0 edc postgres configuration: Resolve EDC postgres database credentials (user and password) #144

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 .github/workflows/publish-dpp-backend-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ jobs:

# Build Java code with Maven
- name: Build dpp backend with maven for Docker Hub
if: ${{ github.repository == 'eclipse-tractusx/digital-product-pass' }}
run: |
cd consumer-backend/productpass
mvn -B clean install
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e
- Fix IRS job tracker to one single job.
- Fix bug related to the broadcast search of digital twin registry
- Fix minor bugs related to the digital twin search and the caching mechanism
- Implemented check for transfer complete and passport received fixing bug related to the passport retrieval
- Fix bug related to the passport retrieval by implementing check for transfer complete
- Fix database credentials in the edc postgres configuration
- Fix the condition to the publish dpp backend workflow


## [released]
Expand Down
4 changes: 2 additions & 2 deletions deployment/helm/edc-consumer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,11 +253,11 @@ A Helm chart for Tractus-X Eclipse Data Space Connector. This chart is a test mo
| tractusx-connector.nameOverride | string | `""` | |
| tractusx-connector.participant.id | string | `"<path:material-pass/data/dev/edc/participant#bpnNumber>"` | |
| tractusx-connector.postgresql.auth.database | string | `"edc"` | |
| tractusx-connector.postgresql.auth.password | string | `"<path:material-pass/data/dev/edc/database#user>"` | |
| tractusx-connector.postgresql.auth.password | string | `"<path:material-pass/data/dev/edc/database#password>"` | |
| tractusx-connector.postgresql.auth.username | string | `"<path:material-pass/data/dev/edc/database#user>"` | |
| tractusx-connector.postgresql.fullnameOverride | string | `"postgresql"` | |
| tractusx-connector.postgresql.jdbcUrl | string | `"jdbc:postgresql://postgresql:5432/edc"` | |
| tractusx-connector.postgresql.password | string | `"<path:material-pass/data/dev/edc/database#user>"` | |
| tractusx-connector.postgresql.password | string | `"<path:material-pass/data/dev/edc/database#password>"` | |
| tractusx-connector.postgresql.username | string | `"<path:material-pass/data/dev/edc/database#user>"` | |
| tractusx-connector.serviceAccount.annotations | object | `{}` | |
| tractusx-connector.serviceAccount.create | bool | `true` | |
Expand Down
4 changes: 2 additions & 2 deletions deployment/helm/edc-consumer/values-beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ tractusx-connector:

postgresql:
username: <path:material-pass/data/beta/edc/database#user>
password: <path:material-pass/data/beta/edc/database#user>
password: <path:material-pass/data/beta/edc/database#password>
auth:
username: <path:material-pass/data/beta/edc/database#user>
password: <path:material-pass/data/beta/edc/database#user>
password: <path:material-pass/data/beta/edc/database#password>

vault:

Expand Down
4 changes: 2 additions & 2 deletions deployment/helm/edc-provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,11 +253,11 @@ A Helm chart for Tractus-X Eclipse Data Space Connector. This chart is a test mo
| tractusx-connector.nameOverride | string | `""` | |
| tractusx-connector.participant.id | string | `"<path:material-pass/data/dev/edc/participant#bpnNumber>"` | |
| tractusx-connector.postgresql.auth.database | string | `"edc"` | |
| tractusx-connector.postgresql.auth.password | string | `"<path:material-pass/data/dev/edc/database#user>"` | |
| tractusx-connector.postgresql.auth.password | string | `"<path:material-pass/data/dev/edc/database#password>"` | |
| tractusx-connector.postgresql.auth.username | string | `"<path:material-pass/data/dev/edc/database#user>"` | |
| tractusx-connector.postgresql.fullnameOverride | string | `"postgresql"` | |
| tractusx-connector.postgresql.jdbcUrl | string | `"jdbc:postgresql://postgresqlprovider:5432/edc"` | |
| tractusx-connector.postgresql.password | string | `"<path:material-pass/data/dev/edc/database#user>"` | |
| tractusx-connector.postgresql.password | string | `"<path:material-pass/data/dev/edc/database#password>"` | |
| tractusx-connector.postgresql.username | string | `"<path:material-pass/data/dev/edc/database#user>"` | |
| tractusx-connector.serviceAccount.annotations | object | `{}` | |
| tractusx-connector.serviceAccount.create | bool | `true` | |
Expand Down
4 changes: 2 additions & 2 deletions deployment/helm/edc-provider/values-beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ tractusx-connector:
clusterIssuer: ""
postgresql:
username: <path:material-pass/data/beta/edc/database#user>
password: <path:material-pass/data/beta/edc/database#user>
password: <path:material-pass/data/beta/edc/database#password>
auth:
username: <path:material-pass/data/beta/edc/database#user>
password: <path:material-pass/data/beta/edc/database#user>
password: <path:material-pass/data/beta/edc/database#password>

vault:
fullnameOverride: "vault"
Expand Down
4 changes: 2 additions & 2 deletions deployment/helm/edc-provider/values-int.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ tractusx-connector:
clusterIssuer: ""
postgresql:
username: <path:material-pass/data/int/edc/database#user>
password: <path:material-pass/data/int/edc/database#user>
password: <path:material-pass/data/int/edc/database#password>
auth:
username: <path:material-pass/data/int/edc/database#user>
password: <path:material-pass/data/int/edc/database#user>
password: <path:material-pass/data/int/edc/database#password>

vault:
fullnameOverride: "vault"
Expand Down
4 changes: 2 additions & 2 deletions deployment/helm/edc-provider/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -515,11 +515,11 @@ tractusx-connector:
jdbcUrl: "jdbc:postgresql://postgresqlprovider:5432/edc"
fullnameOverride: "postgresql"
username: <path:material-pass/data/dev/edc/database#user>
password: <path:material-pass/data/dev/edc/database#user>
password: <path:material-pass/data/dev/edc/database#password>
auth:
database: "edc"
username: <path:material-pass/data/dev/edc/database#user>
password: <path:material-pass/data/dev/edc/database#user>
password: <path:material-pass/data/dev/edc/database#password>

vault:
fullnameOverride: "vault"
Expand Down
Loading