@@ -21,14 +21,13 @@ func initFlags() {
21
21
flag .BoolVar (& kubeUp .load , "load" , false , "Whether to run load tests" )
22
22
flag .BoolVar (& kubeUp .up , "up" , true , "Whether to create a cluster" )
23
23
flag .BoolVar (& kubeUp .build , "build" , true , "Whether to include build command" )
24
- flag .BoolVar (& kubeUp .stable , "stable" , false , "Whether to use perf-tests or perf-tests-dev" )
25
24
flag .BoolVar (& kubeUp .prometheus , "prometheus" , true , "Whether to enable Prometheus and keep it running once tests are finished" )
26
25
flag .IntVar (& kubeUp .size , "size" , 3 , "Size of the cluster" )
27
26
flag .StringVar (& kubeUp .timeout , "timeout" , "" , "Test timeout" )
28
27
flag .StringVar (& kubeUp .zone , "zone" , "europe-north1-a" , "Which GCP zone to run" )
29
28
flag .StringVar (& kubeUp .name , "name" , "" , "Name of the cluster" )
30
29
flag .StringVar (& kubeUp .output , "output" , "$HOME/debug" , "Parent directory for output" )
31
- flag .StringVar (& kubeUp .project , "project" , "k8s-scale-testing " , "Name of the GCP project" )
30
+ flag .StringVar (& kubeUp .project , "project" , "" , "Name of the GCP project" )
32
31
flag .StringVar (& kubeUp .provider , "provider" , "gce" , "Name of the provider [supported: gce, gke, kubemark]" )
33
32
flag .StringVar (& kubeUp .testInfraCommit , "test-infra-commit" , "" , "Commit to be used to load presets" )
34
33
flag .BoolVar (& kubeUp .debug , "debug" , false , "debug mode" )
@@ -274,6 +273,7 @@ func (k *KubeUp) prepareCommands() error {
274
273
k .processExtraArgs ()
275
274
// TODO(oxddr): add an option to use bare kubetest
276
275
k .addCmd (fmt .Sprintf ("go run hack/e2e.go -v -- \\ \n %s" , strings .Join (k .extraArgs , " \\ \n " )))
276
+ k .addCmd ("echo Results in $OUTPUT" )
277
277
return nil
278
278
}
279
279
0 commit comments