Skip to content

Commit 5646aff

Browse files
committed
kup: do not provide default project
1 parent e89d345 commit 5646aff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kup/kup.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ func initFlags() {
2121
flag.BoolVar(&kubeUp.load, "load", false, "Whether to run load tests")
2222
flag.BoolVar(&kubeUp.up, "up", true, "Whether to create a cluster")
2323
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")
2524
flag.BoolVar(&kubeUp.prometheus, "prometheus", true, "Whether to enable Prometheus and keep it running once tests are finished")
2625
flag.IntVar(&kubeUp.size, "size", 3, "Size of the cluster")
2726
flag.StringVar(&kubeUp.timeout, "timeout", "", "Test timeout")
2827
flag.StringVar(&kubeUp.zone, "zone", "europe-north1-a", "Which GCP zone to run")
2928
flag.StringVar(&kubeUp.name, "name", "", "Name of the cluster")
3029
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")
3231
flag.StringVar(&kubeUp.provider, "provider", "gce", "Name of the provider [supported: gce, gke, kubemark]")
3332
flag.StringVar(&kubeUp.testInfraCommit, "test-infra-commit", "", "Commit to be used to load presets")
3433
flag.BoolVar(&kubeUp.debug, "debug", false, "debug mode")
@@ -274,6 +273,7 @@ func (k *KubeUp) prepareCommands() error {
274273
k.processExtraArgs()
275274
// TODO(oxddr): add an option to use bare kubetest
276275
k.addCmd(fmt.Sprintf("go run hack/e2e.go -v -- \\\n %s", strings.Join(k.extraArgs, " \\\n ")))
276+
k.addCmd("echo Results in $OUTPUT")
277277
return nil
278278
}
279279

0 commit comments

Comments
 (0)