Skip to content

Commit 2c3c13d

Browse files
committed
disable unsupported --batch-jobs flag
1 parent 7400b14 commit 2c3c13d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pkg/cli/generate.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ type GenerateArgs struct {
2020
PerturbationWaitSeconds int
2121
PodCreationTimeoutSeconds int
2222
Retries int
23-
BatchJobs bool
2423
Context string
2524
ServerPorts []int
2625
ServerProtocols []string
@@ -34,6 +33,7 @@ type GenerateArgs struct {
3433
DryRun bool
3534
JobTimeoutSeconds int
3635
JunitResultsFile string
36+
//BatchJobs bool
3737
}
3838

3939
func SetupGenerateCommand() *cobra.Command {
@@ -54,7 +54,7 @@ func SetupGenerateCommand() *cobra.Command {
5454
command.Flags().StringSliceVar(&args.ServerNamespaces, "namespace", []string{"x", "y", "z"}, "namespaces to create/use pods in")
5555
command.Flags().StringSliceVar(&args.ServerPods, "pod", []string{"a", "b", "c"}, "pods to create in namespaces")
5656

57-
command.Flags().BoolVar(&args.BatchJobs, "batch-jobs", false, "if true, run jobs in batches to avoid saturating the Kube APIServer with too many exec requests")
57+
//command.Flags().BoolVar(&args.BatchJobs, "batch-jobs", false, "if true, run jobs in batches to avoid saturating the Kube APIServer with too many exec requests")
5858
command.Flags().IntVar(&args.Retries, "retries", 1, "number of kube probe retries to allow, if probe fails")
5959
command.Flags().BoolVar(&args.AllowDNS, "allow-dns", true, "if using egress, allow udp over port 53 for DNS resolution")
6060
command.Flags().BoolVar(&args.Noisy, "noisy", false, "if true, print all results")
@@ -100,15 +100,16 @@ func RunGenerateCommand(args *GenerateArgs) {
100100

101101
serverProtocols := parseProtocols(args.ServerProtocols)
102102

103-
resources, err := probe.NewDefaultResources(kubernetes, args.ServerNamespaces, args.ServerPods, args.ServerPorts, serverProtocols, externalIPs, args.PodCreationTimeoutSeconds, args.BatchJobs)
103+
batchJobs := false // args.BatchJobs
104+
resources, err := probe.NewDefaultResources(kubernetes, args.ServerNamespaces, args.ServerPods, args.ServerPorts, serverProtocols, externalIPs, args.PodCreationTimeoutSeconds, batchJobs)
104105
utils.DoOrDie(err)
105106

106107
interpreterConfig := &connectivity.InterpreterConfig{
107108
ResetClusterBeforeTestCase: true,
108109
KubeProbeRetries: args.Retries,
109110
PerturbationWaitSeconds: args.PerturbationWaitSeconds,
110111
VerifyClusterStateBeforeTestCase: true,
111-
BatchJobs: args.BatchJobs,
112+
BatchJobs: batchJobs,
112113
IgnoreLoopback: args.IgnoreLoopback,
113114
JobTimeoutSeconds: args.JobTimeoutSeconds,
114115
}

0 commit comments

Comments
 (0)