Skip to content

Commit

Permalink
fix: make oidc local script work (#1131)
Browse files Browse the repository at this point in the history
Signed-off-by: Pat Losoponkul <[email protected]>
  • Loading branch information
patlo-iog committed Jun 13, 2024
1 parent b7f05d3 commit c6f6ccb
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
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",
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

0 comments on commit c6f6ccb

Please sign in to comment.