Skip to content

Commit 3a6fd79

Browse files
committed
remove unimplemented command; fix allow-dns doc string
1 parent 845ce8b commit 3a6fd79

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

pkg/cli/generate.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func SetupGenerateCommand() *cobra.Command {
5656

5757
//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")
59-
command.Flags().BoolVar(&args.AllowDNS, "allow-dns", true, "if using egress, allow udp over port 53 for DNS resolution")
59+
command.Flags().BoolVar(&args.AllowDNS, "allow-dns", true, "if using egress, allow tcp and udp over port 53 for DNS resolution")
6060
command.Flags().BoolVar(&args.Noisy, "noisy", false, "if true, print all results")
6161
command.Flags().BoolVar(&args.IgnoreLoopback, "ignore-loopback", false, "if true, ignore loopback for truthtable correctness verification")
6262
command.Flags().IntVar(&args.PerturbationWaitSeconds, "perturbation-wait-seconds", 5, "number of seconds to wait after perturbing the cluster (i.e. create a network policy, modify a ns/pod label) before running probes, to give the CNI time to update the cluster state")

pkg/cli/root.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,10 @@ func SetupRootCommand() *cobra.Command {
3333
command.PersistentFlags().StringVarP(&flags.Verbosity, "verbosity", "v", "info", "log level; one of [info, debug, trace, warn, error, fatal, panic]")
3434

3535
command.AddCommand(SetupAnalyzeCommand())
36-
command.AddCommand(SetupCompareCommand())
36+
//command.AddCommand(SetupCompareCommand())
3737
command.AddCommand(SetupGenerateCommand())
3838
command.AddCommand(SetupProbeCommand())
3939
command.AddCommand(SetupVersionCommand())
4040

41-
// TODO
42-
//command.AddCommand(setupQueryPeersCommand())
43-
4441
return command
4542
}

0 commit comments

Comments
 (0)