Skip to content

Commit

Permalink
feat: update V5 issuer (#1717)
Browse files Browse the repository at this point in the history
Signed-off-by: Mykhailo Sizov <[email protected]>
  • Loading branch information
mishasizov-SK authored Aug 14, 2023
1 parent 6c2b073 commit e951846
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 22 deletions.
41 changes: 24 additions & 17 deletions k8s/issuer/kustomize/issuer/overlays/common/profiles-mapping.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ spec:
err_resp=$(hydra clients create --endpoint http://hydra-admin --fake-tls-termination --id bank_issuer --name "bank_issuer" --secret bank-issuer-secret --grant-types authorization_code --response-types code --scope openid,profile,address,BankAccountProof --skip-tls-verify --callbacks https://api-gateway.||DOMAIN||/oidc/redirect 2>&1 > /dev/null);
echo $err_resp;
if [ -z "$err_resp" ] || [ -n "$(echo ${err_resp} | grep already )" ];then echo "Success client creation"; break;else exit 1;fi;
err_resp=$(hydra clients create --endpoint http://hydra-admin --fake-tls-termination --id bank_issuer_sdjwt_v5 --name "bank_issuer_sdjwt_v5" --secret bank-issuer-sdjwt-v5-secret --grant-types authorization_code --response-types code --scope openid,profile,address,CrudeProductCredential --skip-tls-verify --callbacks https://api-gateway.||DOMAIN||/oidc/redirect 2>&1 > /dev/null);
echo $err_resp;
if [ -z "$err_resp" ] || [ -n "$(echo ${err_resp} | grep already )" ];then echo "Success client creation"; break;else exit 1;fi;
err_resp=$(hydra clients create --endpoint http://hydra-admin --fake-tls-termination --id pr_card_issuer_jwtsd --name "pr_card_issuer_jwtsd" --secret pr-card-issuer-jwtsd-secret --grant-types authorization_code --response-types code --scope openid,profile,address,PRCardProof --skip-tls-verify --callbacks https://api-gateway.||DOMAIN||/oidc/redirect 2>&1 > /dev/null);
echo $err_resp;
Expand Down

Large diffs are not rendered by default.

0 comments on commit e951846

Please sign in to comment.