add --memory flag to constrain that variable

pull/9808/head
Priya Wadhwa 2020-11-23 16:18:46 -08:00
parent 46f82272e0
commit b01bad0ebf
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ func minikubeStartTime(ctx context.Context) (float64, error) {
defer os.Remove(minikubePath)
defer deleteMinikube(ctx, minikubePath)
cmd := exec.CommandContext(ctx, minikubePath, "start", "--driver=docker", "-p", profile)
cmd := exec.CommandContext(ctx, minikubePath, "start", "--driver=docker", "-p", profile, "--memory=2000")
cmd.Stdout = os.Stderr
cmd.Stderr = os.Stderr