Skip to content

Commit cdc8907

Browse files
committed
update helm config
1 parent 7205415 commit cdc8907

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

charts/wallet-gateway/values.schema.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,22 +146,25 @@
146146
},
147147
"id": {
148148
"type": "string"
149+
},
150+
"publicUrl": {
151+
"description": "The public base URL of the gateway, if available (e.g. https://wallet.example.com). This determines what browsers will try to use to connect, and is useful when using reverse proxies. If omitted, this will be derived from the server configuration.",
152+
"type": "string"
149153
}
150154
},
151155
"additionalProperties": false
152156
},
153157
"server": {
154158
"type": "object",
155159
"required": [
156-
"host",
157160
"port",
158-
"tls",
159161
"dappPath",
160162
"userPath",
161163
"allowedOrigins"
162164
],
163165
"properties": {
164166
"allowedOrigins": {
167+
"description": "Allowed CORS origins, typically corresponding to which external dApps are allowed to connect. Use \"*\" to allow all origins, or set an array of origin strings.",
165168
"default": "*",
166169
"anyOf": [
167170
{
@@ -176,22 +179,25 @@
176179
]
177180
},
178181
"dappPath": {
182+
"description": "The path serving the dapp API. Defaults /api/v0/dapp",
179183
"default": "/api/v0/dapp",
180184
"type": "string"
181185
},
182186
"host": {
183-
"default": "localhost",
187+
"description": "The host interface the server binds to. Deprecated as the service always binds to the local machine network interface. Will be removed in a future release.",
184188
"type": "string"
185189
},
186190
"port": {
191+
"description": "The port on which the NodeJS service will listen. Defaults to 3030.",
187192
"default": 3030,
188193
"type": "number"
189194
},
190195
"tls": {
191-
"default": false,
196+
"description": "Deprecated, this option no longer has any effect. Will be removed in a future release.",
192197
"type": "boolean"
193198
},
194199
"userPath": {
200+
"description": "The path serving the user API. Defaults /api/v0/user",
195201
"default": "/api/v0/user",
196202
"type": "string"
197203
}

charts/wallet-gateway/values.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ image:
55
config:
66
kernel:
77
id: remote-da
8+
publicUrl: "https://wallet.example.com"
89
clientType: remote
910
server:
10-
host: ""
1111
port: 3030
12-
tls: false
1312
dappPath: "/api/v0/dapp"
1413
userPath: "/api/v0/user"
1514
allowedOrigins: "*"

0 commit comments

Comments
 (0)