Skip to content

Commit

Permalink
values update
Browse files Browse the repository at this point in the history
  • Loading branch information
agg3fe committed Jul 1, 2024
1 parent ba177a6 commit bee2d0a
Showing 1 changed file with 28 additions and 23 deletions.
51 changes: 28 additions & 23 deletions environments/association/discoveryfinder/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,27 @@ discoveryfinder:
registry: docker.io
repository: tractusx/sldt-discovery-finder
imagePullPolicy: IfNotPresent
imagePullSecrets:
- name: machineuser-pull-secret-ro
replicaCount: 1
containerPort: 4243
host: localhost
host: semantics.int.catena-x.net
## If 'authentication' is set to false, no OAuth authentication is enforced
authentication: true
## If initial endpoints need to be created when the application starts, enable the initialEndpoints block and add initialEndpoints.
## Type and endpointAddress is required is enabled.
properties:
discoveryfinder:
# initialEndpoints:
# - type:
# endpointAddress:
# description:
# documentation:
# timeToLive:
# Initial Endpoint for edc discovery with type bpn
initialEndpoints:
- type: bpn
endpointAddress: https://portal-backend.int.demo.catena-x.net/api/administration/Connectors/discovery
description: Service to discover connector endpoints based on bpns
documentation: https://portal-backend.int.demo.catena-x.net/api/administration/swagger/index.html
timeToLive: "31536000"
idp:
issuerUri: https://idp-url
publicClientId: idpClientID
issuerUri: <path:semantics/data/authentication#keycloak-idp>
publicClientId: <path:semantics/data/authentication#idpClientIdDiscoveryFinder>
service:
port: 8080
type: ClusterIP
Expand All @@ -59,34 +62,36 @@ discoveryfinder:
sqlInitPlatform: pg
## The url, user, and password parameter will be ignored if 'enablePostgres' is set to true.
## In that case the postgresql auth parameters are used.
url: jdbc:postgresql://database:5432
user:
password:
url: jdbc:postgresql://semantic-services-postgresql:5432/discoveryfinder
user: catenax
password: <path:semantics/data/authentication#dbpassword>
ingress:
enabled: false
tls: false
enabled: true
tls: true
urlPrefix: /discoveryfinder
className: nginx
annotations: {}
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
nginx.ingress.kubernetes.io/rewrite-target: /$2
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/enable-cors: "true"
nginx.ingress.kubernetes.io/cors-allow-credentials: "true"
nginx.ingress.kubernetes.io/x-forwarded-prefix: /discoveryfinder
resources:
limits:
cpu: 750m
memory: 1024Mi
memory: "1024Mi"
requests:
cpu: 250m
memory: 1024Mi
memory: "512Mi"

postgresql:
primary:
persistence:
enabled: true
size: 50Gi
size: 8Gi
service:
ports:
postgresql: 5432
auth:
username: catenax
password:
password: <path:semantics/data/authentication#dbpassword>
database: discoveryfinder
# -- Secret contains passwords for username postgres.
existingSecret: secret-discoveryfinder-postgres-init

0 comments on commit bee2d0a

Please sign in to comment.