From eea322522ca3b937abed4b7d4ecad5b0b5cf8a98 Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Wed, 20 Nov 2019 14:02:25 -0500 Subject: [PATCH] command: quota init writes files with a network limit --- command/quota_init.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 } + ] } } ]