Skip to content

Commit

Permalink
Merge branch 'devel' into route_agent_diag
Browse files Browse the repository at this point in the history
  • Loading branch information
yboaron authored Sep 24, 2024
2 parents 3a8d115 + 33ee906 commit da4f7a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cmd/subctl/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import (
"github.com/submariner-io/shipyard/test/e2e/framework"
"github.com/submariner-io/subctl/internal/exit"
"github.com/submariner-io/subctl/pkg/cluster"
"github.com/submariner-io/subctl/pkg/version"
submarineropv1a1 "github.com/submariner-io/submariner-operator/api/v1alpha1"
submarinerv1 "github.com/submariner-io/submariner/pkg/apis/submariner.io/v1"
"golang.org/x/net/http/httpproxy"
Expand Down Expand Up @@ -64,8 +65,9 @@ func init() {

// rootCmd represents the base command when called without any subcommands.
var rootCmd = &cobra.Command{
Use: filepath.Base(os.Args[0]),
Short: "Deploy, manage, verify and diagnose Submariner deployments",
Use: filepath.Base(os.Args[0]),
Short: "Deploy, manage, verify and diagnose Submariner deployments",
Version: version.Version,
}

// Execute adds all child commands to the root command and sets flags appropriately.
Expand Down
1 change: 1 addition & 0 deletions internal/gather/cni.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ var ipTablesCmds = map[string]string{
"iptables": "iptables -L -n -v --line-numbers",
"iptables-nat": "iptables -L -n -v --line-numbers -t nat",
"iptables-mangle": "iptables -L -n -v --line-numbers -t mangle",
"iptables-save": "iptables-save -c",
}

var libreswanCmds = map[string]string{
Expand Down

0 comments on commit da4f7a4

Please sign in to comment.