You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().VarP(&opts.Output, "output", "o", "output format for the test report (available format: text, json, junit)")
254
250
cmd.Flags().BoolVar(&opts.NoColor, "no-color", false, "no color in the output")
255
251
cmd.Flags().StringVar(&opts.JunitSuiteName, "junit-suite-name", "", fmt.Sprintf("name to use for the junit test suite (defaults to '%s')", output.DefaultJunitSuiteName))
256
-
cmd.Flags().StringVar(&opts.Namespace, "namespace", "", "namespace to use with kubernetes driver")
257
-
cmd.Flags().StringVar(&opts.PodnamePrefix, "podname-prefix", "", "podname prefix to use with kubernetes driver")
252
+
cmd.Flags().StringVar(&opts.PodTemplate, "pod-template", "", "pod template to instantiate pods from with kubernetes driver")
258
253
cmd.Flags().BoolVar(&opts.AllowReuse, "allow-reuse", false, "if set, reuse the running pod for multiple tests, this is a lot faster but test can interfere with each other. Use with kubernetes driver")
259
-
cmd.Flags().StringArrayVarP(&opts.Labels, "labels", "", []string{}, "labels for k8es resources")
260
-
cmd.Flags().StringArrayVarP(&opts.Annotations, "annotations", "", []string{}, "annotations for k8es resources")
261
-
cmd.Flags().StringArrayVarP(&opts.NodeSelector, "node-selector", "", []string{}, "node selector for k8es resources")
cmd.Flags().StringVar(&opts.TestReport, "test-report", "", "generate test report and write it to specified file (supported format: json, junit; default: json)")
0 commit comments