Commit 6f9ffe19 authored by saiakhil46's avatar saiakhil46
Browse files

updated certificatesign helm_chart

Showing with 4 additions and 5 deletions
+4 -5
{ {
"issuers": { "issuers": {
"default": { "default": {
"publicKey": {{ CERTIFICATE_PUBLIC_KEY | default("") }}, "publicKey": "{{ CERTIFICATESIGN_PUBLIC_KEY | default('') }}",
"privateKey": {{ CERTIFICATE_PRIVATE_KEY | default("") }}, "privateKey": "{{ CERTIFICATESIGN_PRIVATE_KEY | default('') }}",
"signatureType": "RSA", "signatureType": "RSA",
"verificationMethod": "did:india", "verificationMethod": "did:india",
"$comment": "The above are test keys and it needs to be replaced before going to production" "$comment": "The above are test keys and it needs to be replaced before going to production"
......
...@@ -31,8 +31,7 @@ certificatesignenv: ...@@ -31,8 +31,7 @@ certificatesignenv:
PORT: "8079" PORT: "8079"
QR_TYPE: {{ QR_TYPE|default('URL') }} QR_TYPE: {{ QR_TYPE|default('URL') }}
CERTIFICATE_DOMAIN_URL: "https://{{domain_name}}" CERTIFICATE_DOMAIN_URL: "https://{{domain_name}}"
CERTIFICATE_PUBLIC_KEY: {{CERTIFICATE_PUBLIC_KEY | default("''")}} CERTIFICATE_PUBLIC_KEY: "{{ CERTIFICATESIGN_PUBLIC_KEY | default('') }}"
CERTIFICATE_PRIVATE_KEY: |- CERTIFICATE_PRIVATE_KEY: "{{ CERTIFICATESIGN_PRIVATE_KEY | default('') }}"
{{ CERTIFICATE_PRIVATE_KEY | default("''") | indent(width=4) }}
SIGNING_KEY_TYPE: "{{ SIGNING_KEY_TYPE|default('RSA')}}" SIGNING_KEY_TYPE: "{{ SIGNING_KEY_TYPE|default('RSA')}}"
CACHE_CONTEXT_URLS: "{{ cache_context_urls | default(upstream_url + '/schema/v1_context.json,' + upstream_url + '/schema/sunbird_context.json,' + upstream_url + '/schema/credential_template.json') }}" CACHE_CONTEXT_URLS: "{{ cache_context_urls | default(upstream_url + '/schema/v1_context.json,' + upstream_url + '/schema/sunbird_context.json,' + upstream_url + '/schema/credential_template.json') }}"
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment