You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/admin/wskadmin
+47-2Lines changed: 47 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -148,6 +148,17 @@ def parseArgs():
148
148
subcmd.add_argument('--concurrentInvocations', help='concurrent invocations allowed for this namespace', type=int)
149
149
subcmd.add_argument('--allowedKinds', help='list of runtime kinds allowed in this namespace', nargs='+', type=str)
150
150
subcmd.add_argument('--storeActivations', help='enable or disable storing of activations to datastore for this namespace', default=None, type=str_to_bool)
151
+
subcmd.add_argument('--minActionMemory', help='minimum action memory size for this namespace', default=None, type=int)
152
+
subcmd.add_argument('--maxActionMemory', help='maximum action memory size for this namespace', default=None, type=int)
153
+
subcmd.add_argument('--minActionLogs', help='minimum activation log size for this namespace', default=None, type=int)
154
+
subcmd.add_argument('--maxActionLogs', help='maximum activation log size for this namespace', default=None, type=int)
155
+
subcmd.add_argument('--minActionTimeout', help='minimum action time limit for this namespace', default=None, type=int)
156
+
subcmd.add_argument('--maxActionTimeout', help='maximum action time limit for this namespace', default=None, type=int)
157
+
subcmd.add_argument('--minActionConcurrency', help='minimum action concurrency limit for this namespace', default=None, type=int)
158
+
subcmd.add_argument('--maxActionConcurrency', help='maximum action concurrency limit for this namespace', default=None, type=int)
159
+
subcmd.add_argument('--maxParameterSize', help='maximum parameter size for this namespace', default=None, type=str)
160
+
subcmd.add_argument('--maxPayloadSize', help='maximum payload size for this namespace', default=None, type=str)
161
+
subcmd.add_argument('--truncationSize', help='activation truncation size for this namespace', default=None, type=str)
151
162
152
163
subcmd=subparser.add_parser('get', help='get limits for a given namespace (if none exist, system defaults apply)')
153
164
subcmd.add_argument('namespace', help='the namespace to get limits for')
0 commit comments