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

[DON'T MERGE] Import env #1508

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions charts/traction/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ acapy:
##
multitenancyConfiguration:
json: ""
wallet_type: single-wallet-askar
wallet_type: basic
## @section Acapy Plugins
##
## Specify the plugins to enable.
Expand Down Expand Up @@ -234,7 +234,7 @@ acapy:
plugin-config.yml:
multitenant_provider:
manager:
class_name: multitenant_provider.v1_0.manager.AskarMultitokenMultitenantManager
class_name: multitenant_provider.v1_0.manager.BasicMultitokenMultitenantManager
always_check_provided_wallet_key: true
errors:
on_unneeded_wallet_key: false
Expand Down
9 changes: 9 additions & 0 deletions deploy/traction/values-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ acapy:
endorser_did: "EZpKx6nT56Hv83JmNz7ik8"
endorser_alias: "sovrin-testnet-endorser"
plugin-config.yml:
multitenant_provider:
manager:
class_name: multitenant_provider.v1_0.manager.BasicMultitokenMultitenantManager
always_check_provided_wallet_key: true
errors:
on_unneeded_wallet_key: false
token_expiry:
units: days
amount: 1
traction_innkeeper:
innkeeper_wallet:
print_key: true
Expand Down
2 changes: 1 addition & 1 deletion scripts/plugin-config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
multitenant_provider:
manager:
class_name: "multitenant_provider.v1_0.manager.AskarMultitokenMultitenantManager"
class_name: "multitenant_provider.v1_0.manager.BasicMultitokenMultitenantManager"
always_check_provided_wallet_key: true
errors:
on_unneeded_wallet_key: false
Expand Down
2 changes: 1 addition & 1 deletion services/aca-py/ngrok-wait.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ exec aca-py start \
--endpoint ${ACAPY_ENDPOINT} \
--wallet-name "${TRACTION_ACAPY_WALLET_NAME}" \
--wallet-key "${TRACTION_ACAPY_WALLET_ENCRYPTION_KEY}" \
--wallet-storage-config "{\"url\":\"${POSTGRESQL_HOST}:5432\",\"max_connections\":5, \"wallet_scheme\":\"${TRACTION_ACAPY_WALLET_SCHEME}\"}" \
--wallet-storage-config "{\"url\":\"${POSTGRESQL_HOST}:5432\",\"max_connections\":5}" \
--wallet-storage-creds "{\"account\":\"${POSTGRESQL_USER}\",\"password\":\"${POSTGRESQL_PASSWORD}\",\"admin_account\":\"${POSTGRESQL_USER}\",\"admin_password\":\"${POSTGRESQL_PASSWORD}\"}" \
--admin "0.0.0.0" ${TRACTION_ACAPY_ADMIN_PORT} \
--plugin multitenant_provider.v1_0 \
Expand Down
2 changes: 1 addition & 1 deletion services/tenant-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tenant-ui",
"version": "1.1.0",
"version": "1.1.99",
"description": "",
"main": "index.ts",
"scripts": {
Expand Down
Loading