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: add values file for the stable env of catena-x eV #156

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
93 changes: 93 additions & 0 deletions environments/helm-values/values-stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
###############################################################
# Copyright (c) 2024 BMW Group AG
# Copyright 2024 SAP SE or an SAP affiliate company and ssi-dim-middle-layer contributors.
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# SPDX-License-Identifier: Apache-2.0
###############################################################

ingress:
enabled: true
className: "nginx"
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/enable-cors: "true"
nginx.ingress.kubernetes.io/proxy-body-size: "8m"
nginx.ingress.kubernetes.io/cors-allow-origin: "https://*.stable.catena-x.net"
tls:
- secretName: "dim-v2.stable.catena-x.net-tls"
hosts:
- "dim-v2.stable.catena-x.net"
hosts:
- host: "dim-v2.stable.catena-x.net"
paths:
- path: "/api/dim"
pathType: "Prefix"
backend:
port: 8080

dim:
swaggerEnabled: true
operatorId: "d6cd4e2e-1053-4ba6-888e-1cd56509958a"
bpn: "BPNL00000003CRHK"
didDocumentLocationAddress: "https://portal-backend.stable.catena-x.net/api/administration/staticdata/did/BPNL00000003CRHK/did.json"

migrations:
logging:
default: "Debug"

processesworker:
logging:
default: "Debug"
dim:
applicationName: "catena-x-portal"
provisioning:
clientId: "<path:portal/data/dim/stable/provisioning#clientId>"
clientSecret: "<path:portal/data/dim/stable/provisioning#clientSecret>"
tokenAddress: "https://provisioning-prod-uvm2enuw.authentication.eu10.hana.ondemand.com/oauth/token"
baseUrl: "https://div-provisioning-prod.eu10.div.cloud.sap"
grantType: "client_credentials"
encryptionConfigs:
index0:
encryptionKey: "<path:portal/data/dim/stable/provisioning#provisioning-encryption-key0>"
callback:
scope: "openid"
grantType: "client_credentials"
# -- Provide client-id for callback.
clientId: "<path:portal/data/dim/callback#clientId>"
# -- Client-secret for callback client-id. Secret-key 'callback-client-secret'.
clientSecret: "<path:portal/data/stable/iam/centralidp-client-secrets#dim-portal-sa>"
tokenAddress: "http://centralidp.stable.catena-x.net/auth/realms/CX-Central/protocol/openid-connect/token"
# -- Url to the cf service api
baseAddress: "https://portal-backend.stable.catena-x.net"
technicalUserCreation:
encryptionConfigs:
index0:
encryptionKey: "<path:portal/data/dim/stable/provisioning#provisioning-encryption-key0>"

idp:
address: "https://centralidp.stable.catena-x.net"
jwtBearerOptions:
tokenValidationParameters:
validAudience: "DIM-Middle-Layer"

replicaCount: 2

postgresql:
architecture: "standalone"
auth:
postgrespassword: "<path:portal/data/dim/stable/postgres#postgres-password>"
password: "<path:portal/data/dim/stable/postgres#password>"
Loading