Skip to content

Commit 9ce67a9

Browse files
Víctor Rampérez MartínVíctor Rampérez Martín
authored andcommitted
feat(dss): add missing dss-validation-service dependency
1 parent be613bf commit 9ce67a9

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

charts/vc-authentication/Chart.lock

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

charts/vc-authentication/Chart.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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 }}

charts/vc-authentication/values.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)