Skip to content

Commit

Permalink
topology command: cosmetic changes
Browse files Browse the repository at this point in the history
Signed-off-by: Eguzki Astiz Lezaun <[email protected]>
  • Loading branch information
eguzki committed Dec 19, 2024
1 parent 9eb4601 commit fbc068b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/topology.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ var (
func topologyCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "topology",
Short: "Read kuadrant topology",
Long: "Read kuadrant topology",
Short: "Export and visualize kuadrant topology",
Long: "Export and visualize kuadrant topology",
RunE: runTopology,
}

cmd.Flags().StringVarP(&topologyNS, "namespace", "n", "kuadrant-system", "Topology's namespace")
cmd.Flags().StringVarP(&topologyOutputFile, "output", "o", "(required)", "Output file")
cmd.Flags().StringVarP(&topologyOutputFile, "output", "o", "", "Output file")
err := cmd.MarkFlagRequired("output")
if err != nil {
panic(err)
Expand Down

0 comments on commit fbc068b

Please sign in to comment.