Skip to content

Commit

Permalink
test: submit verbose flag to e2e tests
Browse files Browse the repository at this point in the history
Without it the output doesn't match the criteria for the Kubernetes
conformance.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
(cherry picked from commit 374ef53)
  • Loading branch information
smira committed Apr 27, 2023
1 parent bf1cfe9 commit 447c73b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/cluster/sonobuoy/sonobuoy.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,9 @@ func Run(ctx context.Context, cluster cluster.K8sProvider, options *Options) err
runConfig.DynamicPlugins = []string{"e2e"}
runConfig.PluginEnvOverrides = map[string]map[string]string{
"e2e": {
"E2E_FOCUS": strings.Join(options.RunTests, "|"),
"E2E_PARALLEL": fmt.Sprintf("%v", options.Parallel),
"E2E_FOCUS": strings.Join(options.RunTests, "|"),
"E2E_PARALLEL": fmt.Sprintf("%v", options.Parallel),
"E2E_EXTRA_ARGS": "--ginkgo.v",
},
}
runConfig.KubeVersion = fmt.Sprintf("v%s", options.KubernetesVersion)
Expand Down

0 comments on commit 447c73b

Please sign in to comment.