From 8dd69e2cc5236948e812b4a94ead5ab18ccd98cc Mon Sep 17 00:00:00 2001 From: Phil Schneider Date: Tue, 23 Apr 2024 10:43:51 +0200 Subject: [PATCH] build: bump version for v1.0.0-rc.2 (#78) Reviewed-By: Evelyn Gurschler --- charts/ssi-credential-issuer/Chart.yaml | 4 ++-- charts/ssi-credential-issuer/README.md | 18 ++++++++++-------- .../argocd-app-templates/appsetup-int.yaml | 2 +- .../argocd-app-templates/appsetup-pen.yaml | 2 +- .../argocd-app-templates/appsetup-stable.yaml | 2 +- src/Directory.Build.props | 2 +- 6 files changed, 16 insertions(+), 14 deletions(-) diff --git a/charts/ssi-credential-issuer/Chart.yaml b/charts/ssi-credential-issuer/Chart.yaml index 4a92b2df..1cd37b2d 100644 --- a/charts/ssi-credential-issuer/Chart.yaml +++ b/charts/ssi-credential-issuer/Chart.yaml @@ -20,8 +20,8 @@ apiVersion: v2 name: ssi-credential-issuer type: application -version: 1.0.0-rc.1 -appVersion: 1.0.0-rc.1 +version: 1.0.0-rc.2 +appVersion: 1.0.0-rc.2 description: Helm chart for SSI Credential Issuer home: https://github.com/eclipse-tractusx/ssi-credential-issuer dependencies: diff --git a/charts/ssi-credential-issuer/README.md b/charts/ssi-credential-issuer/README.md index fd3ef803..4ff2e5f2 100644 --- a/charts/ssi-credential-issuer/README.md +++ b/charts/ssi-credential-issuer/README.md @@ -1,4 +1,4 @@ -# Helm chart for Catena-X SSI Credential Issuer +# Helm chart for SSI Credential Issuer This helm chart installs the Catena-X SSI Credential Issuer application. @@ -27,7 +27,7 @@ To use the helm chart as a dependency: dependencies: - name: ssi-credential-issuer repository: https://eclipse-tractusx.github.io/charts/dev - version: 1.0.0-rc.1 + version: 1.0.0-rc.2 ``` ## Requirements @@ -40,6 +40,9 @@ dependencies: | Key | Type | Default | Description | |-----|------|---------|-------------| +| portalBackendAddress | string | `"https://portal-backend.example.org"` | Provide portal-backend base address. | +| walletAddress | string | `"https://wallet.example.org"` | | +| walletTokenAddress | string | `"https://wallet.example.org/oauth/token"` | | | issuer.image.name | string | `"docker.io/tractusx/ssi-credential-issuer-service"` | | | issuer.image.tag | string | `""` | | | issuer.imagePullPolicy | string | `"IfNotPresent"` | | @@ -56,9 +59,9 @@ dependencies: | issuer.portal.grantType | string | `"client_credentials"` | | | issuer.portal.clientId | string | `"portal-client-id"` | Provide portal client-id from CX IAM centralidp. | | issuer.portal.clientSecret | string | `""` | Client-secret for portal client-id. Secret-key 'portal-client-secret'. | -| issuer.credential.issuerDid | string | `""` | | -| issuer.credential.issuerBpn | string | `""` | | -| issuer.credential.statusListUrl | string | `""` | | +| issuer.credential.issuerDid | string | `"did:web:example"` | | +| issuer.credential.issuerBpn | string | `"BPNL00000001TEST"` | | +| issuer.credential.statusListUrl | string | `"https://example.org/statuslist"` | | | issuer.credential.encryptionConfigIndex | int | `0` | | | issuer.credential.encryptionConfigs.index0.index | int | `0` | | | issuer.credential.encryptionConfigs.index0.cipherMode | string | `"CBC"` | | @@ -68,7 +71,7 @@ dependencies: | issuermigrations.image.name | string | `"docker.io/tractusx/ssi-credential-issuer-migrations"` | | | issuermigrations.image.tag | string | `""` | | | issuermigrations.imagePullPolicy | string | `"IfNotPresent"` | | -| issuermigrations.resources | object | `{"limits":{"cpu":"45m","memory":"105M"},"requests":{"cpu":"15m","memory":"105M"}}` | We recommend to review the default resource limits as this should a conscious choice. | +| issuermigrations.resources | object | `{"limits":{"cpu":"45m","memory":"200M"},"requests":{"cpu":"15m","memory":"200M"}}` | We recommend to review the default resource limits as this should a conscious choice. | | issuermigrations.seeding.testDataEnvironments | string | `""` | | | issuermigrations.seeding.testDataPaths | string | `"Seeder/Data"` | | | issuermigrations.logging.default | string | `"Information"` | | @@ -77,7 +80,7 @@ dependencies: | processesworker.image.name | string | `"docker.io/tractusx/ssi-credential-issuer-processes-worker"` | | | processesworker.image.tag | string | `""` | | | processesworker.imagePullPolicy | string | `"IfNotPresent"` | | -| processesworker.resources | object | `{"limits":{"cpu":"45m","memory":"105M"},"requests":{"cpu":"15m","memory":"105M"}}` | We recommend to review the default resource limits as this should a conscious choice. | +| processesworker.resources | object | `{"limits":{"cpu":"45m","memory":"200M"},"requests":{"cpu":"15m","memory":"200M"}}` | We recommend to review the default resource limits as this should a conscious choice. | | processesworker.logging.default | string | `"Information"` | | | processesworker.portal.scope | string | `"openid"` | | | processesworker.portal.grantType | string | `"client_credentials"` | | @@ -127,7 +130,6 @@ dependencies: | externalDatabase.database | string | `"issuer"` | Database name. | | externalDatabase.password | string | `""` | Password for the non-root username (default 'issuer'). Secret-key 'password'. | | externalDatabase.existingSecret | string | `"issuer-external-db"` | Secret containing the password non-root username, (default 'issuer'). | -| externalDatabase.existingSecretPasswordKey | string | `"password"` | Name of an existing secret key containing the database credentials. | | centralidp | object | `{"address":"https://centralidp.example.org","authRealm":"CX-Central","jwtBearerOptions":{"metadataPath":"/auth/realms/CX-Central/.well-known/openid-configuration","refreshInterval":"00:00:30","requireHttpsMetadata":"true","tokenValidationParameters":{"validAudience":"Cl24-CX-SSI-CredentialIssuer","validIssuerPath":"/auth/realms/CX-Central"}},"tokenPath":"/auth/realms/CX-Central/protocol/openid-connect/token","useAuthTrail":true}` | Provide details about centralidp (CX IAM) Keycloak instance. | | centralidp.address | string | `"https://centralidp.example.org"` | Provide centralidp base address (CX IAM), without trailing '/auth'. | | centralidp.useAuthTrail | bool | `true` | Flag if the api should be used with an leading /auth path | diff --git a/consortia/argocd-app-templates/appsetup-int.yaml b/consortia/argocd-app-templates/appsetup-int.yaml index 45a42a45..f1695f2b 100644 --- a/consortia/argocd-app-templates/appsetup-int.yaml +++ b/consortia/argocd-app-templates/appsetup-int.yaml @@ -28,7 +28,7 @@ spec: source: path: charts/ssi-credential-issuer repoURL: 'https://github.com/eclipse-tractusx/ssi-credential-issuer.git' - targetRevision: ssi-credential-issuer-1.0.0-rc.1 + targetRevision: ssi-credential-issuer-1.0.0-rc.2 plugin: env: - name: AVP_SECRET diff --git a/consortia/argocd-app-templates/appsetup-pen.yaml b/consortia/argocd-app-templates/appsetup-pen.yaml index b869af9b..d8663ab7 100644 --- a/consortia/argocd-app-templates/appsetup-pen.yaml +++ b/consortia/argocd-app-templates/appsetup-pen.yaml @@ -28,7 +28,7 @@ spec: source: path: charts/ssi-credential-issuer repoURL: 'https://github.com/eclipse-tractusx/ssi-credential-issuer.git' - targetRevision: ssi-credential-issuer-1.0.0-rc.1 + targetRevision: ssi-credential-issuer-1.0.0-2 plugin: env: - name: AVP_SECRET diff --git a/consortia/argocd-app-templates/appsetup-stable.yaml b/consortia/argocd-app-templates/appsetup-stable.yaml index 6152c557..33e28fc4 100644 --- a/consortia/argocd-app-templates/appsetup-stable.yaml +++ b/consortia/argocd-app-templates/appsetup-stable.yaml @@ -29,7 +29,7 @@ spec: source: path: '' repoURL: 'https://eclipse-tractusx.github.io/charts/dev' - targetRevision: ssi-credential-issuer-1.0.0-rc.1 + targetRevision: ssi-credential-issuer-1.0.0-rc.2 plugin: env: - name: HELM_VALUES diff --git a/src/Directory.Build.props b/src/Directory.Build.props index ae93adb6..ff5d3169 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -20,6 +20,6 @@ 1.0.0 - rc.1 + rc.2