Skip to content
Open
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
30 changes: 30 additions & 0 deletions charts/testnet-wallet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ config:
logLevel: info
nodeEnv: production
port: 4003
theme: "dark"

urls:
backend: "https://api.interledger-test.dev"
Expand All @@ -19,6 +20,10 @@ config:

features:
useTestKycData: true
enabled: false

gatehub:
env: "sandbox"

backend:
# If true, the chart will create the secrets defined in the secretsMaps section.
Expand Down Expand Up @@ -71,6 +76,7 @@ config:
env: "sandbox"
accessKey: ""
secretKey: ""
apiBaseUrl: "https://api.sandbox.gatehub.net"
accessSepaKey: ""
secretSepaKey: ""
gatewayUuid: "9358542e-9bd1-48bc-b869-8661f1a1827c"
Expand All @@ -87,9 +93,15 @@ config:
productCode: "PMDSGWEEA"
nameOnCard: "INTERLEDGER"
paymentPointerPrefix: "ilp.dev"
iframe:
managedRampUrl: "https://managed-ramp.sandbox.gatehub.net"
exchangeUrl: "https://exchange.sandbox.gatehub.net"
onboardingUrl: "https://onboarding.sandbox.gatehub.net"

rate:
apiKey: ""
limit: false
limitLevel: "LAX"

card:
pinUrl: "https://lab.dinitcs.com/uat/Stargate.Paywiser.Server/api/v3/ClientDevice/pin"
Expand Down Expand Up @@ -277,6 +289,12 @@ configMaps:
valueRef: config.frontend.urls.openPaymentsHost
- key: NEXT_PUBLIC_AUTH_HOST
valueRef: config.frontend.urls.authHost
- key: NEXT_PUBLIC_THEME
valueRef: config.frontend.theme
- key: NEXT_PUBLIC_GATEHUB_ENV
valueRef: config.frontend.gatehub.env
- key: NEXT_PUBLIC_FEATURES_ENABLED
valueRef: config.frontend.features.enabled
backend:
name: "backend"
contentMap:
Expand Down Expand Up @@ -310,6 +328,14 @@ configMaps:
valueRef: config.backend.gatehub.accessKey
- key: GATEHUB_SEPA_ACCESS_KEY
valueRef: config.backend.gatehub.accessSepaKey
- key: GATEHUB_API_BASE_URL
valueRef: config.backend.gatehub.apiBaseUrl
- key: GATEHUB_IFRAME_MANAGED_RAMP_URL
valueRef: config.backend.gatehub.iframe.managedRampUrl
- key: GATEHUB_IFRAME_EXCHANGE_URL
valueRef: config.backend.gatehub.iframe.exchangeUrl
- key: GATEHUB_IFRAME_ONBOARDING_URL
valueRef: config.backend.gatehub.iframe.onboardingUrl
- key: GATEHUB_GATEWAY_UUID
valueRef: config.backend.gatehub.gatewayUuid
- key: GATEHUB_VAULT_UUID_EUR
Expand Down Expand Up @@ -344,6 +370,10 @@ configMaps:
valueRef: config.backend.rafiki.operatorId
- key: ADMIN_SIGNATURE_VERSION
valueRef: config.backend.rafiki.apiSignatureVersion
- key: RATE_LIMIT
valueRef: config.backend.rate.limit
- key: RATE_LIMIT_LEVEL
valueRef: config.backend.rate.limitLevel


# This section of the values file defines Kubernetes secrets that will be created
Expand Down
Loading