Skip to content

Commit 5822549

Browse files
committed
updated fields
1 parent f51f369 commit 5822549

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

charts/wallet-gateway/tests/all_test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ tests:
5959
"allowedOrigins": "*",
6060
"dappPath": "/api/v0/dapp",
6161
"port": 3030,
62-
"userPath": "/api/v0/user"
62+
"userPath": "/api/v0/user",
63+
"requestSizeLimit: '5mb'
6364
},
6465
"signingStore": {
6566
"connection": {

charts/wallet-gateway/values.schema.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
},
3636
"userPath": {
3737
"type": "string"
38+
},
39+
"requestSizeLimit": {
40+
"type": "string"
3841
}
3942
},
4043
"additionalProperties": false
@@ -157,7 +160,8 @@
157160
"port",
158161
"dappPath",
159162
"userPath",
160-
"allowedOrigins"
163+
"allowedOrigins",
164+
"requestSizeLimit"
161165
],
162166
"properties": {
163167
"allowedOrigins": {
@@ -197,6 +201,11 @@
197201
"description": "The path serving the user API. Defaults /api/v0/user",
198202
"default": "/api/v0/user",
199203
"type": "string"
204+
},
205+
"requestSizeLimit": {
206+
"description": "The maximum size of incoming requests. Defaults to 1mb.",
207+
"default": "1mb",
208+
"type": "string"
200209
}
201210
},
202211
"additionalProperties": false

charts/wallet-gateway/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ config:
1212
dappPath: "/api/v0/dapp"
1313
userPath: "/api/v0/user"
1414
allowedOrigins: "*"
15+
requestSizeLimit: '5mb'
1516
store:
1617
connection:
1718
type: sqlite

0 commit comments

Comments
 (0)