Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make oidc local script work #1131

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
14 changes: 7 additions & 7 deletions examples/.nickel/stack.ncl
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ in
version = V.hurl,
hurlDir = "./bootstrap",
variables = {
HURL_KEYCLOAK_BASE_URL = "http://external-keycloak-%{args.name}:8080",
HURL_KEYCLOAK_ADMIN_USER = "admin",
HURL_KEYCLOAK_ADMIN_PASSWORD = "admin",
HURL_KEYCLOAK_REALM = args.realm,
HURL_ALICE_USERNAME = "alice",
HURL_ALICE_PASSWORD = "1234",
HURL_ALICE_WALLET_CLIENT_ID = "alice-wallet",
HURL_keycloak_base_url = "http://external-keycloak-%{args.name}:8080",
patlo-iog marked this conversation as resolved.
Show resolved Hide resolved
HURL_keycloak_admin_user = "admin",
HURL_keycloak_admin_password = "admin",
HURL_keycloak_realm = args.realm,
HURL_alice_username = "alice",
HURL_alice_password = "1234",
HURL_alice_wallet_client_id = "alice-wallet",
}
},
}
Expand Down
2 changes: 1 addition & 1 deletion examples/.nickel/versions.ncl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
# identus
agent = "1.33.1-SNAPSHOT",
agent = "1.34.0-SNAPSHOT",
node = "2.4.0",
# 3rd party
caddy = "2.7.6-alpine",
Expand Down
2 changes: 1 addition & 1 deletion examples/mt-keycloak-vault/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
SECRET_STORAGE_BACKEND: vault
VAULT_ADDR: http://vault-default:8200
VAULT_TOKEN: admin
image: ghcr.io/hyperledger/identus-cloud-agent:1.33.1-SNAPSHOT
image: ghcr.io/hyperledger/identus-cloud-agent:1.34.0-SNAPSHOT
restart: always
caddy-default:
configs:
Expand Down
2 changes: 1 addition & 1 deletion examples/mt-keycloak/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ services:
PRISM_NODE_PORT: '50053'
REST_SERVICE_URL: http://caddy-default:8080/prism-agent
SECRET_STORAGE_BACKEND: postgres
image: ghcr.io/hyperledger/identus-cloud-agent:1.33.1-SNAPSHOT
image: ghcr.io/hyperledger/identus-cloud-agent:1.34.0-SNAPSHOT
restart: always
caddy-default:
configs:
Expand Down
2 changes: 1 addition & 1 deletion examples/mt/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
PRISM_NODE_PORT: '50053'
REST_SERVICE_URL: http://caddy-default:8080/prism-agent
SECRET_STORAGE_BACKEND: postgres
image: ghcr.io/hyperledger/identus-cloud-agent:1.33.1-SNAPSHOT
image: ghcr.io/hyperledger/identus-cloud-agent:1.34.0-SNAPSHOT
restart: always
caddy-default:
configs:
Expand Down
6 changes: 3 additions & 3 deletions examples/st-multi/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ services:
PRISM_NODE_PORT: '50053'
REST_SERVICE_URL: http://caddy-holder:8081/prism-agent
SECRET_STORAGE_BACKEND: postgres
image: ghcr.io/hyperledger/identus-cloud-agent:1.33.1-SNAPSHOT
image: ghcr.io/hyperledger/identus-cloud-agent:1.34.0-SNAPSHOT
restart: always
agent-issuer:
depends_on:
Expand Down Expand Up @@ -106,7 +106,7 @@ services:
PRISM_NODE_PORT: '50053'
REST_SERVICE_URL: http://caddy-issuer:8080/prism-agent
SECRET_STORAGE_BACKEND: postgres
image: ghcr.io/hyperledger/identus-cloud-agent:1.33.1-SNAPSHOT
image: ghcr.io/hyperledger/identus-cloud-agent:1.34.0-SNAPSHOT
restart: always
agent-verifier:
depends_on:
Expand Down Expand Up @@ -136,7 +136,7 @@ services:
PRISM_NODE_PORT: '50053'
REST_SERVICE_URL: http://caddy-verifier:8082/prism-agent
SECRET_STORAGE_BACKEND: postgres
image: ghcr.io/hyperledger/identus-cloud-agent:1.33.1-SNAPSHOT
image: ghcr.io/hyperledger/identus-cloud-agent:1.34.0-SNAPSHOT
restart: always
caddy-holder:
configs:
Expand Down
16 changes: 8 additions & 8 deletions examples/st-oid4vci/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
PRISM_NODE_PORT: '50053'
REST_SERVICE_URL: http://caddy-issuer:8080/prism-agent
SECRET_STORAGE_BACKEND: postgres
image: ghcr.io/hyperledger/identus-cloud-agent:1.33.1-SNAPSHOT
image: ghcr.io/hyperledger/identus-cloud-agent:1.34.0-SNAPSHOT
restart: always
caddy-issuer:
configs:
Expand Down Expand Up @@ -82,13 +82,13 @@ services:
- /hurl/*.hurl
- --test
environment:
HURL_ALICE_PASSWORD: '1234'
HURL_ALICE_USERNAME: alice
HURL_ALICE_WALLET_CLIENT_ID: alice-wallet
HURL_KEYCLOAK_ADMIN_PASSWORD: admin
HURL_KEYCLOAK_ADMIN_USER: admin
HURL_KEYCLOAK_BASE_URL: http://external-keycloak-issuer:8080
HURL_KEYCLOAK_REALM: students
HURL_alice_password: '1234'
HURL_alice_username: alice
HURL_alice_wallet_client_id: alice-wallet
HURL_keycloak_admin_password: admin
HURL_keycloak_admin_user: admin
HURL_keycloak_base_url: http://external-keycloak-issuer:8080
HURL_keycloak_realm: students
image: ghcr.io/orange-opensource/hurl:4.2.0
volumes:
- ./bootstrap:/hurl
Expand Down
2 changes: 1 addition & 1 deletion examples/st-vault/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ services:
SECRET_STORAGE_BACKEND: vault
VAULT_ADDR: http://vault-issuer:8200
VAULT_TOKEN: admin
image: ghcr.io/hyperledger/identus-cloud-agent:1.33.1-SNAPSHOT
image: ghcr.io/hyperledger/identus-cloud-agent:1.34.0-SNAPSHOT
restart: always
caddy-issuer:
configs:
Expand Down
2 changes: 1 addition & 1 deletion examples/st/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
PRISM_NODE_PORT: '50053'
REST_SERVICE_URL: http://caddy-issuer:8080/prism-agent
SECRET_STORAGE_BACKEND: postgres
image: ghcr.io/hyperledger/identus-cloud-agent:1.33.1-SNAPSHOT
image: ghcr.io/hyperledger/identus-cloud-agent:1.34.0-SNAPSHOT
restart: always
caddy-issuer:
configs:
Expand Down
Loading