Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ spec:
- name: "COMPANYDATA__DECENTRALIDENTITYMANAGEMENTAUTHURL"
value: "{{ .Values.decentralIdentityManagementAuthAddress }}"
- name: "COMPANYDATA__ISSUERDID"
value: "{{ .Values.backend.administration.issuerdid }}"
value: "{{ .Values.issuerdid }}"
- name: "COMPANYDATA__BPNDIDRESOLVERURL"
value: "{{ .Values.bpnDidResolver.directoryApiAddress }}"
- name: "CONNECTORS__VALIDCERTIFICATIONCONTENTTYPES__0"
Expand Down
4 changes: 4 additions & 0 deletions charts/portal/templates/deployment-backend-registration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,10 @@ spec:
value: "{{ .Values.backend.registration.registrationDocumentTypeIds.type0 }}"
- name: "REGISTRATION__SUBMITDOCUMENTTYPEIDS__0"
value: "{{ .Values.backend.registration.submitDocumentTypeIds.type0 }}"
- name: "UNIVERSALDIDRESOLVER__UNIVERSALRESOLVERADDRESS"
value: "{{ .Values.backend.processesworker.dim.universalResolverAddress }}"
- name: "BRINGYOUROWNWALLET__NONAAPPLICABLEUSERROLES__0"
value: "{{ .Values.backend.registration.bringYourOwnWallet.nonApplicableUserRoles.role0 }}"
- name: "MAILINGPROCESSCREATION__ENCRYPTIONCONFIGINDEX"
value: "{{ .Values.backend.processesworker.mailing.encryptionConfigIndex }}"
- name: "MAILINGPROCESSCREATION__ENCRYPTIONCONFIGS__0__INDEX"
Expand Down
2 changes: 2 additions & 0 deletions charts/portal/templates/deployment-frontend-registration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ spec:
value: "{{ .Values.centralidp.realm }}"
- name: CLIENT_ID_REGISTRATION
value: "{{ .Values.centralidp.clients.registration }}"
- name: ISSUER_ID
value: "{{ .Values.issuerdid }}"
ports:
- name: http
containerPort: {{ .Values.portContainer }}
Expand Down
7 changes: 6 additions & 1 deletion charts/portal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ clearinghouse:
# -- Provide issuer component base address
issuerComponentAddress: "https://ssi-credential-issuer.example.org"

# -- Provide issuer DID
issuerdid: "did:web:example.org:test123"

# -- Provide details about the BPN DID Resolver.
bpnDidResolver:
# -- Provide management api base address
Expand Down Expand Up @@ -409,6 +412,9 @@ backend:
type0: "CX_FRAME_CONTRACT"
submitDocumentTypeIds:
type0: "COMMERCIAL_REGISTER_EXTRACT"
bringYourOwnWallet:
nonApplicableUserRoles:
role0: "607818be-4978-41f4-bf63-fa8d2de51158"
administration:
name: "administration-service"
image:
Expand Down Expand Up @@ -450,7 +456,6 @@ backend:
type0: "PDF"
companyCertificateMediaTypes:
type0: "PDF"
issuerdid: "did:web:example.org:test123"
connectors:
validCertificationContentTypes:
type0: "application/x-pem-file"
Expand Down