Skip to content

Commit

Permalink
Added issue-credential protocol version to OrgBook issuer controller
Browse files Browse the repository at this point in the history
Signed-off-by: Emiliano Suñé <[email protected]>
  • Loading branch information
esune committed Sep 13, 2024
1 parent 9324edc commit 8fbb294
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ SERVICES_FILE_NAME=services.yml
SETTINGS_FILE_NAME=settings.yml
CONTROLLER_API_KEY=
OIDC_JWKS_URI=
ISSUE_CREDENTIAL_PROTOCOL=V10
MIN_REPLICAS=1
MAX_REPLICAS=1
CPU_REQUEST=10m
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ TAG_NAME=prod
# SERVICES_FILE_NAME=services.yml
# SETTINGS_FILE_NAME=settings.yml
# CONTROLLER_API_KEY=
OIDC_JWKS_URI=T.B.D.
# OIDC_JWKS_URI=
# ISSUE_CREDENTIAL_PROTOCOL=V10
# MIN_REPLICAS=1
# MAX_REPLICAS=1
# CPU_REQUEST=10m
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ TAG_NAME=test
# SERVICES_FILE_NAME=services.yml
# SETTINGS_FILE_NAME=settings.yml
# CONTROLLER_API_KEY=
OIDC_JWKS_URI=
# OIDC_JWKS_URI=
# SSUE_CREDENTIAL_PROTOCOL=V10
# MIN_REPLICAS=1
# MAX_REPLICAS=1
# CPU_REQUEST=10m
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,8 @@ objects:
value: ${MAX_CRED_RESPONSE_TIMEOUT}
- name: OIDC_JWKS_URI
value: ${OIDC_JWKS_URI}
- name: ISSUE_CRED_VERSION
value: ${ISSUE_CREDENTIAL_PROTOCOL}
volumeMounts:
- name: ${NAME}${SUFFIX}-routes-volume
mountPath: ${CONFIG_MOUNT_PATH}${ROUTES_FILE_NAME}
Expand Down Expand Up @@ -451,6 +453,11 @@ parameters:
description: The URI pointing to a JWKS to be used for token validation. It is used to protect the /issue-credential endpoint.
required: false
value: ""
- name: ISSUE_CREDENTIAL_PROTOCOL
displayName: ISSUE CREDENTIAL PROTOCOL
description: The protocol version to use when issuing credentials. Supported values are V10 and V20.
required: true
value: "V10"
- name: MIN_REPLICAS
displayName: Minimum Replicas
description: The minimum number of pods to have running.
Expand Down

0 comments on commit 8fbb294

Please sign in to comment.