forked from eclipse-tractusx/tractus-x-umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
1511 lines (1482 loc) · 51.6 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# #############################################################################
# Copyright (c) 2023,2024 Contributors to the Eclipse Foundation
#
# 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
# #############################################################################
---
portal:
enabled: false
replicaCount: 1
postgresql:
nameOverride: "portal-backend-postgresql"
architecture: standalone
auth:
password: "dbpasswordportal"
portalPassword: "dbpasswordportal"
replicationPassword: "dbpasswordportal"
provisioningPassword: "dbpasswordportal"
primary:
persistence:
enabled: false
portalAddress: "http://portal.tx.test"
portalBackendAddress: "http://portal-backend.tx.test"
centralidp:
address: "http://centralidp.tx.test"
sharedidpAddress: "http://sharedidp.tx.test"
semanticsAddress: "http://semantics.tx.test"
bpdm:
poolAddress: "http://business-partners.tx.test"
poolApiPath: "/pool/v6"
portalGateAddress: "http://business-partners.tx.test"
portalGateApiPath: "/gate/v6"
custodianAddress: "http://ssi-dim-wallet-stub.tx.test"
dimWrapper:
baseAddress: "http://ssi-dim-wallet-stub.tx.test"
apiPath: "/api/dim"
tokenAddress: "http://someiam.tx.test/realms/example/protocol/openid-connect/token"
decentralIdentityManagementAuthAddress: "http://ssi-dim-wallet-stub.tx.test/api/sts"
sdfactoryAddress: "http://sdfactory.tx.test"
clearinghouseAddress: "http://validation.tx.test"
clearinghouseTokenAddress: "http://someiam.tx.test/realms/example/protocol/openid-connect/token"
issuerComponentAddress: "http://ssi-credential-issuer.tx.test"
frontend:
ingress:
enabled: true
annotations:
# uncomment the following line for tls
# cert-manager.io/cluster-issuer: "my-ca-issuer"
nginx.ingress.kubernetes.io/rewrite-target: "/$1"
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/enable-cors: "true"
nginx.ingress.kubernetes.io/cors-allow-origin: "http://*.tx.test"
# uncomment the following lines for tls
# tls:
# # -- Provide tls secret.
# - secretName: "portal.tx.test-tls"
# # -- Provide host for tls secret.
# hosts:
# - "portal.tx.test"
hosts:
- host: "portal.tx.test"
paths:
- path: "/(.*)"
pathType: "ImplementationSpecific"
backend:
service: "portal"
port: 8080
- path: "/registration/(.*)"
pathType: "ImplementationSpecific"
backend:
service: "registration"
port: 8080
- path: "/((assets|documentation)/.*)"
pathType: "ImplementationSpecific"
backend:
service: "assets"
port: 8080
backend:
dotnetEnvironment: "Development"
useDimWallet: true
keycloak:
central:
clientId: "sa-cl1-reg-2"
clientSecret: "changeme"
jwtBearerOptions:
requireHttpsMetadata: "false"
shared:
clientId: "sa-cl1-reg-1"
clientSecret: "changeme"
registration:
logging:
default: "Debug"
bpdmLibrary: "Debug"
registrationService: "Debug"
swaggerEnabled: true
administration:
logging:
default: "Debug"
businessLogic: "Debug"
sdfactoryLibrary: "Debug"
bpdmLibrary: "Debug"
custodianLibrary: "Debug"
serviceAccount:
encryptionConfigs:
index0:
encryptionKey: "deb8261ec7b89c344f1c5ef5a11606e305f14e0d231b1357d90ad0180c5081d3"
issuerdid: "did:web:ssi-dim-wallet-stub.tx.test:BPNL00000003CRHK"
swaggerEnabled: true
appmarketplace:
logging:
default: "Debug"
offersLibrary: "Debug"
swaggerEnabled: true
services:
logging:
default: "Debug"
offersLibrary: "Debug"
swaggerEnabled: true
notification:
logging:
default: "Debug"
swaggerEnabled: true
processesworker:
clearinghouseConnectDisabled: true
logging:
default: "Debug"
processesLibrary: "Debug"
bpdmLibrary: "Debug"
clearinghouseLibrary: "Debug"
custodianLibrary: "Debug"
sdfactoryLibrary: "Debug"
offerProvider: "Debug"
bpdm:
clientId: &bpdmAdminClientId "sa-cl7-cx-5"
clientSecret: &bpdmAdminClientSecret "changeme"
# -- no configuration for clearinghouse because it's an external component
# clientId and clientSecret aren't in the centralidp Keycloak
# clearinghouse:
# clientId: "clearinghouse-client-id"
# clientSecret: ""
custodian:
clientId: "sa-cl5-custodian-2"
clientSecret: "changeme"
sdfactory:
issuerBpn: "BPNL00000003CRHK"
clientId: "sa-cl8-cx-1"
clientSecret: "changeme"
offerprovider:
clientId: "sa-cl2-03"
clientSecret: "changeme"
dim:
clientId: "sa-cl2-05"
clientSecret: "changeme"
grantType: "client_credentials"
scope: "openid"
baseAddress: "http://ssi-dim-wallet-stub.tx.test"
universalResolverAddress: "https://dev.uniresolver.io/"
encryptionConfigs:
index0:
encryptionKey:
"6cbaf47ee30c778088e6faa44e2f0eed98beda86db06c7d2e37e32ab78e14b33"
issuerComponent:
clientId: "sa-cl2-04"
clientSecret: "changeme"
encryptionConfigs:
index0:
encryptionKey:
"39ffab76f99ece1e4ac72f973d5c703737324a75c6445e84fa317a7833476a15"
bpnDidResolver:
# -- ApiKey for management endpoint of the bpnDidResolver. Secret-key 'bpndidresolver-api-key'.
apiKey: ""
onboardingServiceProvider:
encryptionConfigs:
index0:
cipherMode: "CBC"
paddingMode: "PKCS7"
encryptionKey:
"f7bc3d99f1ace73e7a75b794affbbc26206ab29909821a102aaccb2e95e45f7c"
index1:
encryptionKey:
"8027152fe7a869c88acc86981760acd70ff1d660c2bd129eece94edef933caf7"
invitation:
encryptionConfigs:
index0:
encryptionKey:
"d84fea29d6eac0fa51e36682b164e7d61693cd4202ed04306d2d9c5d46655e2c"
mailing:
encryptionConfigs:
index0:
encryptionKey:
"d2e27d71b018cb36029184852f1baa3e26891be94718f77de4c7cc6c882fe317"
mailing:
host: "smtp.tx.test"
port: "587"
user: "smtp-user"
senderEmail: "[email protected]"
password: ""
portalmigrations:
seeding:
seedTestData:
enabled: true
useOwnConfigMap:
configMap: "portal-testdata"
filename: "test"
companies:
# BPN is retrieved from participant id of the dataconsumerOne
dataconsumerOne:
name: "BPN_OEM_C"
connectorUrl: "http://dataconsumer-1-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN OEM C Connector"
# BPN is retrieved from participant id of the tx-data-provider
tx-data-provider:
name: "BPN_OEM_A"
connectorUrl: "http://dataprovider-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN OEM A Connector"
# BPN is retrieved from participant id of the dataconsumerTwo
dataconsumerTwo:
name: "BPN_OEM_B"
connectorUrl: "http://dataconsumer-2-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN OEM B Connector"
company4:
name: "BPN_IRS_TEST"
bpn: "BPNL00000003AWSS"
connectorUrl: "http://company4-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN IRS TEST Connector"
company5:
name: "BPN_N_TIER_A"
bpn: "BPNL00000003B0Q0"
connectorUrl: "http://company5-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN N TIER A Connector"
company6:
name: "BPN_TRACEX_A_SITE_A"
bpn: "BPNS0000000008ZZ"
connectorUrl: "http://company6-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN TRACEX A SITE A Connector"
company7:
name: "BPN_TRACEX_B"
bpn: "BPNL00000003CNKC"
connectorUrl: "http://company7-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN TRACEX B Connector"
company8:
name: "BPN_DISMANTLER"
bpn: "BPNL00000003B6LU"
connectorUrl: "http://company8-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN DISMANTLER Connector"
company9:
name: "BPN_TRACEX_A"
bpn: "BPNL00000003CML1"
connectorUrl: "http://company9-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN TRACEX A Connector"
company10:
name: "BPN_TRACEX_B_SITE_A"
bpn: "BPNS00000008BDFH"
connectorUrl: "http://company10-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN TRACEX B SITE A Connector"
company11:
name: "BPN_TIER_A"
bpn: "BPNL00000003B2OM"
connectorUrl: "http://company11-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN TIER A Connector"
company12:
name: "BPN_TIER_C"
bpn: "BPNL00000003CSGV"
connectorUrl: "http://company12-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN TIER C Connector"
company13:
name: "BPN_TIER_B"
bpn: "BPNL00000003B5MJ"
connectorUrl: "http://company13-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN TIER B Connector"
company14:
name: "BPN_SUB_TIER_B"
bpn: "BPNL00000003AXS3"
connectorUrl: "http://company14-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN SUB TIER B Connector"
company15:
name: "BPN_SUB_TIER_A"
bpn: "BPNL00000003B3NX"
connectorUrl: "http://company15-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN SUB TIER A Connector"
company16:
name: "BPN_SUB_TIER_C"
bpn: "BPNL00000000BJTL"
connectorUrl: "http://company16-controlplane.tx.test/api/v1/dsp"
connectorName: "BPN SUB TIER C Connector"
logging:
default: "Debug"
provisioning:
sharedRealm:
smtpServer:
host: "smtp.tx.test"
port: "587"
user: "smtp-user"
password: ""
from: "[email protected]"
replyTo: "[email protected]"
# -- docs: http://portal-backend.tx.test/api/administration/swagger/index.html
# http://portal-backend.tx.test/api/registration/swagger/index.html
# http://portal-backend.tx.test/api/apps/swagger/index.html
# http://portal-backend.tx.test/api/services/swagger/index.html
# http://portal-backend.tx.test/api/notification/swagger/index.html
ingress:
enabled: true
name: "portal-backend"
annotations:
# uncomment the following line for tls
# cert-manager.io/cluster-issuer: "my-ca-issuer"
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: "http://localhost:3000, http://*.tx.test"
# uncomment the following lines for tls
# tls:
# # -- Provide tls secret.
# - secretName: "portal-backend.tx.test-tls"
# # -- Provide host for tls secret.
# hosts:
# - "portal-backend.tx.test"
hosts:
- host: "portal-backend.tx.test"
paths:
- path: "/api/registration"
pathType: "Prefix"
backend:
service: "registration-service"
port: 8080
- path: "/api/administration"
pathType: "Prefix"
backend:
service: "administration-service"
port: 8080
- path: "/api/notification"
pathType: "Prefix"
backend:
service: "notification-service"
port: 8080
- path: "/api/provisioning"
pathType: "Prefix"
backend:
service: "provisioning-service"
port: 8080
- path: "/api/apps"
pathType: "Prefix"
backend:
service: "marketplace-app-service"
port: 8080
- path: "/api/services"
pathType: "Prefix"
backend:
service: "services-service"
port: 8080
centralidp:
enabled: false
keycloak:
nameOverride: "centralidp"
replicaCount: 1
auth:
adminPassword: "adminconsolepwcentralidp"
postgresql:
nameOverride: "centralidp-postgresql"
auth:
password: "dbpasswordcentralidp"
postgresPassword: "dbpasswordcentralidp"
architecture: standalone
primary:
persistence:
enabled: false
ingress:
enabled: true
ingressClassName: "nginx"
hostname: "centralidp.tx.test"
annotations:
# uncomment the following line for tls
# cert-manager.io/cluster-issuer: "my-ca-issuer"
nginx.ingress.kubernetes.io/cors-allow-credentials: "true"
nginx.ingress.kubernetes.io/cors-allow-methods: "PUT, GET, POST, OPTIONS"
nginx.ingress.kubernetes.io/cors-allow-origin: "http://centralidp.tx.test"
nginx.ingress.kubernetes.io/enable-cors: "true"
nginx.ingress.kubernetes.io/proxy-buffer-size: "128k"
nginx.ingress.kubernetes.io/proxy-buffering: "on"
nginx.ingress.kubernetes.io/proxy-buffers-number: "20"
nginx.ingress.kubernetes.io/use-regex: "true"
tls: false
# uncomment the following line for tls
# initContainers:
# - name: init-certs
# image: docker.io/bitnami/keycloak:25.0.6-debian-12-r0
# imagePullPolicy: IfNotPresent
# command: ["/bin/bash"]
# args:
# - -ec
# - |-
# keytool -import -file "/certs/tls.crt" \
# -keystore "/opt/bitnami/keycloak/certs/keycloak.truststore.jks" \
# -storepass "${KEYCLOAK_SPI_TRUSTSTORE_PASSWORD}" \
# -noprompt
# env:
# - name: KEYCLOAK_SPI_TRUSTSTORE_PASSWORD
# value: "changeit"
# volumeMounts:
# - name: certificates
# mountPath: /certs
# - name: shared-certs
# mountPath: "/opt/bitnami/keycloak/certs"
# extraEnvVars:
# - name: KEYCLOAK_SPI_TRUSTSTORE_FILE
# value: "/opt/bitnami/keycloak/certs/keycloak.truststore.jks"
# - name: KEYCLOAK_SPI_TRUSTSTORE_PASSWORD
# value: "changeit"
# extraVolumes:
# - name: certificates
# secret:
# secretName: root-secret
# defaultMode: 420
# - name: shared-certs
# emptyDir: {}
# extraVolumeMounts:
# - name: certificates
# mountPath: /certs
# - name: shared-certs
# mountPath: "/opt/bitnami/keycloak/certs"
realmSeeding:
sslRequired: "none"
clients:
registration:
redirects:
- http://portal.tx.test/*
portal:
rootUrl: http://portal.tx.test/home
redirects:
- http://portal.tx.test/*
semantics:
redirects:
- http://portal.tx.test/*
miw:
clientSecret: "changeme"
redirects:
- http://managed-identity-wallets.tx.test/*
bpdm:
clientSecret: "changeme"
redirects:
- http://partners-pool.tx.test/*
bpdmGate:
clientSecret: "changeme"
redirects:
- http://partners-gate.tx.test/*
bpdmOrchestrator:
clientSecret: "changeme"
serviceAccounts:
clientSecrets:
- clientId: "sa-cl1-reg-2"
clientSecret: "changeme"
- clientId: "sa-cl2-01"
clientSecret: "changeme"
- clientId: "sa-cl2-02"
clientSecret: "changeme"
- clientId: "sa-cl2-03"
clientSecret: "changeme"
- clientId: "sa-cl2-04"
clientSecret: "changeme"
- clientId: "sa-cl2-05"
clientSecret: "changeme"
- clientId: "sa-cl3-cx-1"
clientSecret: "changeme"
- clientId: "sa-cl5-custodian-2"
clientSecret: "changeme"
- clientId: "sa-cl7-cx-1"
clientSecret: "changeme"
- clientId: "sa-cl7-cx-5"
clientSecret: "changeme"
- clientId: "sa-cl7-cx-7"
clientSecret: "changeme"
- clientId: "sa-cl8-cx-1"
clientSecret: "changeme"
- clientId: "sa-cl21-01"
clientSecret: "changeme"
- clientId: "sa-cl22-01"
clientSecret: "changeme"
- clientId: "sa-cl24-01"
clientSecret: "changeme"
- clientId: "sa-cl25-cx-1"
clientSecret: "changeme"
- clientId: "sa-cl25-cx-2"
clientSecret: "changeme"
- clientId: "sa-cl25-cx-3"
clientSecret: "changeme"
bpn: "BPNL00000003CRHK"
sharedidp: "http://sharedidp.tx.test"
# -- test service accounts for EDC - MIW which are obsolete since R24.05;
# uncomment once EDC uses SSI DIM Wallet Stub and the helm chart testing has been updated;
# currently the post-install testdata-upload-job fails if not available
extraServiceAccounts:
clientSecretsAndBpn:
- clientId: satest01
clientSecret: UbfW4CR1xH4OskkovqJ2JzcwnQIrG7oj
bpn: BPNL00000003AZQP
- clientId: satest02
clientSecret: pyFUZP2L9UCSVJUScHcN3ZEgy2PGyEpg
bpn: BPNL00000003AYRE
- clientId: satest03
clientSecret: tPwy4exxH1sXBRQouobSA2nNVaaPuwCs
bpn: BPNL00000003AVTH
- clientId: satest04
clientSecret: BxZ3cwYUPJKK7gI4wq7q6Hgoxel6MphF
bpn: BPNL00000003AWSS
- clientId: satest05
clientSecret: dR00GN1AWCYbRGbZY8TXjs2YEPMeCxLF
bpn: BPNL00000003B0Q0
- clientId: satest06
clientSecret: pDSziT0TUFAkMx0qGFcvpE4XkMqPh13v
bpn: BPNS0000000008ZZ
- clientId: satest07
clientSecret: GY5a44sNuNIjrTyjHvdEPLeNRHH0Kt39
bpn: BPNL00000003CNKC
- clientId: satest08
clientSecret: WUXpQx1aIclA7enqtk4o2uvLDLMreUMI
bpn: BPNL00000003B6LU
- clientId: satest09
clientSecret: N08TGNdhUskJcmVEnOh1tAGwr9oca9PU
bpn: BPNL00000003CML1
- clientId: satest10
clientSecret: gzdSG0CBDJrtv1gje0zUASu1S9P4I7xP
bpn: BPNS00000008BDFH
- clientId: satest11
clientSecret: CC3fz3dQGZsBp2NCbowOV65efBFZTgEO
bpn: BPNL00000003B2OM
- clientId: satest12
clientSecret: 2gjSlFxBO7spEM4aTz3f8CqDS0klbt7C
bpn: BPNL00000003CSGV
- clientId: satest13
clientSecret: 3YQzDqEsdUZ83DVHSIRYUCK4pot61r5M
bpn: BPNL00000003B5MJ
- clientId: satest14
clientSecret: 7qtMpfN3otq5dGiEPssVongXK56lb9LE
bpn: BPNL00000003AXS3
- clientId: satest15
clientSecret: 8QiZ8ineW0Lt8ZOlC2MYuCR0TvM6vMYX
bpn: BPNL00000003B3NX
- clientId: satest16
clientSecret: d2sqUurBH9Vd8DNRmjiMfObU67ajorCq
bpn: BPNL00000000BJTL
initContainer:
image:
name: docker.io/tractusx/umbrella-init-container:2.0.0-init
pullPolicy: IfNotPresent
sharedidp:
enabled: false
keycloak:
nameOverride: "sharedidp"
auth:
adminPassword: "adminconsolepwsharedidp"
postgresql:
nameOverride: "sharedidp-postgresql"
auth:
password: "dbpasswordsharedidp"
postgresPassword: "dbpasswordsharedidp"
architecture: standalone
primary:
persistence:
enabled: false
ingress:
enabled: true
ingressClassName: "nginx"
hostname: "sharedidp.tx.test"
annotations:
# uncomment the following line for tls
# cert-manager.io/cluster-issuer: "my-ca-issuer"
nginx.ingress.kubernetes.io/cors-allow-credentials: "true"
nginx.ingress.kubernetes.io/cors-allow-methods: "PUT, GET, POST, OPTIONS"
nginx.ingress.kubernetes.io/cors-allow-origin: "http://sharedidp.tx.test"
nginx.ingress.kubernetes.io/enable-cors: "true"
nginx.ingress.kubernetes.io/proxy-buffer-size: "128k"
nginx.ingress.kubernetes.io/proxy-buffering: "on"
nginx.ingress.kubernetes.io/proxy-buffers-number: "20"
nginx.ingress.kubernetes.io/use-regex: "true"
tls: false
# uncomment the following line for tls
# initContainers:
# - name: init-certs
# image: docker.io/bitnami/keycloak:25.0.6-debian-12-r0
# imagePullPolicy: IfNotPresent
# command: ["/bin/bash"]
# args:
# - -ec
# - |-
# keytool -import -file "/certs/tls.crt" \
# -keystore "/opt/bitnami/keycloak/certs/keycloak.truststore.jks" \
# -storepass "${KEYCLOAK_SPI_TRUSTSTORE_PASSWORD}" \
# -noprompt
# env:
# - name: KEYCLOAK_SPI_TRUSTSTORE_PASSWORD
# value: "changeit"
# volumeMounts:
# - name: certificates
# mountPath: /certs
# - name: shared-certs
# mountPath: "/opt/bitnami/keycloak/certs"
# extraEnvVars:
# - name: KEYCLOAK_SPI_TRUSTSTORE_FILE
# value: "/opt/bitnami/keycloak/certs/keycloak.truststore.jks"
# - name: KEYCLOAK_SPI_TRUSTSTORE_PASSWORD
# value: "changeit"
# extraVolumes:
# - name: certificates
# secret:
# secretName: root-secret
# defaultMode: 420
# - name: shared-certs
# emptyDir: {}
# extraVolumeMounts:
# - name: certificates
# mountPath: /certs
# - name: shared-certs
# mountPath: "/opt/bitnami/keycloak/certs"
realmSeeding:
realms:
cxOperator:
sslRequired: "none"
centralidp: "http://centralidp.tx.test"
initialUser:
username: "[email protected]"
password: "tractusx-umbr3lla!"
mailing:
host: "smtp.tx.test"
port: "587"
username: "smtp-user"
password: ""
from: "[email protected]"
replyTo: "[email protected]"
master:
serviceAccounts:
provisioning:
clientSecret: "changeme"
saCxOperator:
clientSecret: "changeme"
bpndiscovery:
enabled: false
enablePostgres: true
bpndiscovery:
host: semantics.tx.test
ingress:
enabled: true
tls: false
urlPrefix: "/bpndiscovery"
className: "nginx"
annotations:
cert-manager.io/cluster-issuer: "my-ca-issuer"
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: "/bpndiscovery"
authentication: true
idp:
issuerUri: "http://centralidp.tx.test/auth/realms/CX-Central"
publicClientId: "Cl22-CX-BPND"
bpndiscoveryEndpoint:
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"
discoveryfinderClient:
baseUrl: "semantics.tx.test/discoveryfinder"
registration:
clientId: sa-cl22-01
clientSecret: "client-secret"
authorizationGrantType: changeme
schedulerCronFrequency: "0 0 */1 * * *"
provider:
tokenUri: "http://centralidp.tx.test/auth/realms/CX-Central/protocol/openid-connect/token"
livenessProbe:
initialDelaySeconds: 200
readinessProbe:
initialDelaySeconds: 200
postgresql:
nameOverride: "bpndiscovery-postgresql"
primary:
persistence:
enabled: false
size: 8Gi
auth:
password: "dbpasswordbpndiscovery"
postgresPassword: "dbpasswordbpndiscovery"
discoveryfinder:
enabled: false
enablePostgres: true
discoveryfinder:
authentication: true
livenessProbe:
initialDelaySeconds: 200
readinessProbe:
initialDelaySeconds: 200
host: semantics.tx.test
properties:
discoveryfinder:
initialEndpoints:
- type: bpn
endpointAddress: http://portal-backend.tx.test/api/administration/Connectors/discovery
description: Service to discover connector endpoints based on bpns
documentation: http://portal-backend.tx.test/api/administration/swagger/index.html
idp:
issuerUri: "http://centralidp.tx.test/auth/realms/CX-Central"
publicClientId: "Cl21-CX-DF"
dataSource:
url: "jdbc:postgresql://{{ .Release.Name }}-discoveryfinder-postgresql:5432/discoveryfinder"
# -- docs: http://semantics.tx.test/discoveryfinder/swagger-ui/index.html
ingress:
enabled: true
tls: false
urlPrefix: "/discoveryfinder"
className: "nginx"
annotations:
cert-manager.io/cluster-issuer: "my-ca-issuer"
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"
postgresql:
nameOverride: "discoveryfinder-postgresql"
primary:
persistence:
enabled: false
size: 8Gi
auth:
password: "dbpassworddiscoveryfinder"
postgresPassword: "dbpassworddiscoveryfinder"
selfdescription:
enabled: false
sdfactory:
secret:
# -- JWK Set URI
jwkSetUri: "http://centralidp.tx.test/auth/realms/CX-Central/protocol/openid-connect/certs"
# -- Details for Clearing House URI
clearingHouseUri: ""
# -- Details for Clearing House URL
clearingHouseServerUrl: ""
# -- Details for Clearing House Realm
clearingHouseRealm: ""
# -- Details for Clearing House Client ID
clearingHouseClientId: ""
# -- Details for Clearing House Client Secret
clearingHouseClientSecret: ""
ingress:
enabled: true
hosts:
- host: "sdfactory.tx.test"
paths:
- path: "/"
pathType: "Prefix"
# uncomment the following lines for tls
# tls:
# - tlsName: sdfactory.tx.test-tls
# hosts:
# - sdfactory.tx.test.net
className: "nginx"
# annotations:
# # uncomment the following line for tls
# cert-manager.io/cluster-issuer: "my-ca-issuer"
iatpmock:
enabled: false
nameOverride: mock-util-service
fullnameOverride: mock-util-service
# -- see /docs/user/setup/iatp-mock.md Precondition for IATP Mock
# image:
# # override with locally built image if needed, default "tractusx/iatp-mock"
# repository: ""
# # override tag if needed, default "testing"
# tag: ""
ingress:
enabled: true
hosts:
- host: iatpmock.tx.test
paths:
- path: /
pathType: ImplementationSpecific
ssi-credential-issuer:
enabled: false
portalBackendAddress: "http://portal-backend.tx.test"
walletAddress: "http://ssi-dim-wallet-stub.tx.test"
walletTokenAddress: "http://ssi-dim-wallet-stub.tx.test/oauth/token"
service:
swaggerEnabled: true
logging:
businessLogic: "Debug"
default: "Debug"
portal:
# -- Provide portal client-id from CX IAM centralidp.
# You must specify the technical user with the required roles for the interaction with the portal
clientId: "sa-cl24-01"
# -- Client-secret for portal client-id. Secret-key 'portal-client-secret'.
clientSecret: "changeme"
credential:
issuerDid: "did:web:ssi-dim-wallet-stub.tx.test:BPNL00000003CRHK"
issuerBpn: "BPNL00000003CRHK"
statusListUrl: "http://ssi-dim-wallet-stub.tx.test/status-list/BPNL00000003CRHK/8a6c7486-1e1f-4555-bdd2-1a178182651e"
encryptionConfigIndex: 0
encryptionConfigs:
index0:
# EncryptionKey for wallet. Secret-key 'credential-encryption-key0'. Expected format is 256 bit (64 digits) hex.
encryptionKey: "deb8261ec7b89c344f1c5ef5a11606e305f14e0d231b1357d90ad0180c5081d3"
processesworker:
portal:
# -- Provide portal client-id from CX IAM centralidp.
# You must specify the technical user with the required roles for the interaction with the portal
clientId: "sa-cl24-01"
# -- Client-secret for portal client-id. Secret-key 'portal-client-secret'.
clientSecret: "changeme"
logging:
default: "Debug"
processIdentity:
identityId: ac1cf001-7fbc-1f2f-817f-bce058020006
wallet:
# -- Provide wallet client-id from CX IAM centralidp.
# You must specify the technical user with the required roles for the interaction with the managed-identity-wallet
clientId: "wallet-client-id"
# -- Client-secret for wallet client-id. Secret-key 'wallet-client-secret'.
clientSecret: ""
migrations:
logging:
default: "Debug"
credentialExpiry:
logging:
default: "Debug"
postgresql:
enabled: true
architecture: standalone
primary:
persistence:
enabled: false
auth:
# -- Password for the root username 'postgres'. Secret-key 'postgres-password'.
postgrespassword: "rootissuerpassword"
# -- Password for the non-root username 'issuer'. Secret-key 'password'.
password: "issuerpassword"
centralidp:
# -- Provide centralidp base address (CX IAM), without trailing '/auth'.
address: "http://centralidp.tx.test"
jwtBearerOptions:
requireHttpsMetadata: "false"
ingress:
enabled: true
className: "nginx"
annotations:
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: "http://*.tx.test"
# -- Ingress TLS configuration
tls: []
# - secretName: ""
# hosts:
# - ""
hosts:
- host: "ssi-credential-issuer.tx.test"
paths:
- path: "/"
pathType: "Prefix"
backend:
port: 8080
# Set up services for a business partner pool, golden record process
# and a gate with which the Portal and the users can share business partner data
bpdm:
enabled: false
postgres:
# We use the default name for BPDM postgres
fullnameOverride: &bpdmPostgresName "bpdm-postgres"
nameOverride:
auth:
# BPDM can't handle random initial passwords at the moment
# so need to set a fixed one here and use it in the app configs later
password: &bpdmPostgresPassword "dbpasswordbpdm"
postgresPassword: *bpdmPostgresPassword
architecture: standalone
primary:
persistence:
enabled: false
keycloak:
# We use Central-IDP as authentication server
enabled: false
# Set up a Gate that acts as the Portal's Gate
bpdm-gate:
postgres:
# App uses BPDM postgres default name to find connection to the Postgres
fullnameOverride:
nameOverride: bpdm-postgres
ingress:
enabled: true
annotations:
nginx.ingress.kubernetes.io/rewrite-target: "/$2"
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/x-forwarded-prefix: "/gate"
# The Portal expects its Gate on that specific url path so we provide it here through ingress
hosts:
- host: "business-partners.tx.test"
paths:
- path: "/gate(/|$)(.*)"
pathType: "ImplementationSpecific"
applicationConfig:
server:
# App should take the x-forward-header-prefix into account for Swagger-UI and redirects to work correctly
forward-headers-strategy: "FRAMEWORK"
bpdm:
datasource:
host: *bpdmPostgresName
bpn:
# This Gate has no owner restriction as other companies can write into the Gate under their own tenant
owner-bpn-l:
tasks:
creation:
fromSharingMember:
# Portal needs to set uploaded business partner data as ready to be shared by itself (disables setting it automatically as ready)
starts-as-ready: false
security:
# App's API is authenticated over Central-IDP
auth-server-url: "http://centralidp.tx.test/auth"
realm: "CX-Central"
# Is Central-IDPs name for the Gate client
# The Gate will use that name to check for existing client permissions here
client-id: "Cl16-CX-BPDMGate"
# The Gate needs to connect to the Pool and Orchestrator to realize the Golden Record Process
# Setup client connection for both here (where to connect and the authentication)
# By default the Gate assumes that the authentication server of the Pool and Orchestrator are the same as its own
# We will reuse the general BPDM admin technical user to establish connection between the services
client:
pool:
base-url: http://business-partners.tx.test/pool
registration:
client-id: "sa-cl7-cx-1"
orchestrator:
base-url: http://business-partners.tx.test/orchestrator
registration:
client-id: "sa-cl25-cx-3"
applicationSecrets:
spring:
datasource:
# Set the password of the postgres BPDM user here (Currently, BPDM can't deal with random initial passwords)
password: *bpdmPostgresPassword
bpdm:
client:
orchestrator:
registration:
client-secret: "changeme"
pool:
registration:
client-secret: "changeme"
# Configures the central business partner Pool
bpdm-pool:
postgres:
# App uses BPDM postgres default name to find connection to the Postgres
fullnameOverride:
nameOverride: bpdm-postgres
ingress:
enabled: true
annotations:
nginx.ingress.kubernetes.io/rewrite-target: "/$2"
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/x-forwarded-prefix: "/pool"
hosts:
- host: "business-partners.tx.test"
paths:
- path: "/pool(/|$)(.*)"
pathType: "ImplementationSpecific"
applicationConfig:
server:
# App should take the x-forward-header-prefix into account for Swagger-UI and redirects to work correctly
forward-headers-strategy: "FRAMEWORK"
bpdm:
datasource:
host: *bpdmPostgresName
security:
# App's API is authenticated over Central-IDP
auth-server-url: "http://centralidp.tx.test/auth"
realm: "CX-Central"
# Is Central-IDPs name for the Pool client
# The Pool will use that name to check for existing client permissions here
client-id: "Cl7-CX-BPDM"