From a489fd779f79b44308755fbe40410bb9442df1f4 Mon Sep 17 00:00:00 2001 From: Tunahan Cicek Date: Wed, 7 Feb 2024 10:36:24 +0100 Subject: [PATCH] Add bpn-discovery helm Add discovery-finder helm --- charts/umbrella/Chart.yaml | 10 +++++++++- charts/umbrella/values.yaml | 28 ++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/charts/umbrella/Chart.yaml b/charts/umbrella/Chart.yaml index c5510657..e5e5db0d 100644 --- a/charts/umbrella/Chart.yaml +++ b/charts/umbrella/Chart.yaml @@ -28,7 +28,7 @@ sources: - https://github.com/eclipse-tractusx/e2e-testing type: application -version: 0.3.0 +version: 0.4.0 dependencies: # # TODO: update edc components to R23.12 @@ -56,3 +56,11 @@ dependencies: name: sharedidp repository: https://eclipse-tractusx.github.io/charts/dev version: 2.0.0 + # discovery-finder + - name: discoveryfinder + repository: https://eclipse-tractusx.github.io/charts/dev + version: 0.2.2 + # bpn-discovery + - name: bpndiscovery + repository: https://eclipse-tractusx.github.io/charts/dev + version: 0.2.2 diff --git a/charts/umbrella/values.yaml b/charts/umbrella/values.yaml index 4199ccaa..ec0fb32e 100644 --- a/charts/umbrella/values.yaml +++ b/charts/umbrella/values.yaml @@ -156,3 +156,31 @@ sharedidp: replicaCount: 1 postgresql: nameOverride: "sharedidp-postgresql" + +bpndiscovery: + enablePostgres: true + bpndiscovery: + authentication: false + bpndiscoverEndpoint: + allowedTypes: oen,wmi,passtype,manufacturerPartId + description: Service to discover BPN for different kind of type numbers + endpointAddress: /bpndiscovery + documentation: /bpndiscovery/swagger-ui/index.html + timeToLive: "31536000" + livenessProbe: + initialDelaySeconds: 200 + readinessProbe: + initialDelaySeconds: 200 + postgresql: + nameOverride: "bpndiscovery-postgresql" + +discoveryfinder: + enablePostgres: true + discoveryfinder: + authentication: false + livenessProbe: + initialDelaySeconds: 200 + readinessProbe: + initialDelaySeconds: 200 + postgresql: + nameOverride: "discoveryfinder-postgresql"