File tree Expand file tree Collapse file tree 4 files changed +32
-2
lines changed
Expand file tree Collapse file tree 4 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,11 @@ dependencies:
88- name: trusted-issuers-list
99 repository: https://fiware.github.io/helm-charts
1010 version: 0.10.8
11+ - name: dss-validation-service
12+ repository: https://fiware.github.io/helm-charts
13+ version: 0.0.18
1114- name: postgres-operator
1215 repository: https://opensource.zalando.com/postgres-operator/charts/postgres-operator
1316 version: 1.15.1
14- digest: sha256:52d5450da57e072a2e299c77ced3df562cead480188eacd57802a8b4b67607de
15- generated: "2026-01-07T15:40:23.051054 +01:00"
17+ digest: sha256:765e3c831137d65c0e796f6f7b38540e9d7cf99ef1d5c59c3a3d876b8739825d
18+ generated: "2026-02-26T14:25:25.025513 +01:00"
Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ dependencies:
1616 condition : trusted-issuers-list.enabled
1717 version : 0.10.8
1818 repository : https://fiware.github.io/helm-charts
19+ - name : dss-validation-service
20+ alias : dss
21+ condition : dss.enabled
22+ version : 0.0.18
23+ repository : https://fiware.github.io/helm-charts
1924 - name : postgres-operator
2025 condition : postgres-operator.enabled
2126 version : 1.15.1
Original file line number Diff line number Diff line change 1+ {{- if eq .Values.dss.crl.enabled true }}
2+ apiVersion : v1
3+ kind : Secret
4+ metadata :
5+ name : crl-provider
6+ namespace : {{ $.Release.Namespace | quote }}
7+ labels :
8+ {{ include "vcauthentication.labels" . | nindent 4 }}
9+ data :
10+ {{- toYaml .Values.dss.crl.secret | nindent 2 }}
11+ {{- end }}
Original file line number Diff line number Diff line change @@ -113,4 +113,15 @@ credentials-config-service:
113113 # -- name of the schema inside the db
114114 name : ccsdb
115115 registration :
116+ enabled : false
117+
118+ # -- configuration for the digital-signature.service to be deployed as part of the connector in case of did:elsi support
119+ dss :
120+ # -- should it be enabled?
121+ enabled : false
122+ # -- allows to set a fixed name for the services
123+ fullnameOverride : dss
124+ # -- can be used to provide the crl for ca's provided as truststore to the dss
125+ crl :
126+ # -- should it be enabled?
116127 enabled : false
You can’t perform that action at this time.
0 commit comments