diff --git a/command/quota_init.go b/command/quota_init.go index a78a356c7..45d712591 100644 --- a/command/quota_init.go +++ b/command/quota_init.go @@ -115,6 +115,9 @@ limit { region_limit { cpu = 2500 memory = 1000 + network { + mbits = 50 + } } } `) @@ -128,7 +131,10 @@ var defaultJsonQuotaSpec = strings.TrimSpace(` "Region": "global", "RegionLimit": { "CPU": 2500, - "MemoryMB": 1000 + "MemoryMB": 1000, + "Networks": [ + { "MBits": 50 } + ] } } ]