Skip to content

Commit

Permalink
Fix TUI not displaying data after options change
Browse files Browse the repository at this point in the history
#41 introduced
an error with the TUI because the TUI was not providing
the standard set of options and was instead relying on
this old logic to set a namespace. The TUI now has the correct
flags and defaults for the KubeOptions, mitigating the issue.

Tested locally against a cluster running the nightly deployment.
  • Loading branch information
michaelmdresser committed Mar 31, 2021
1 parent 628d7d7 commit 7a545bc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/cmd/tui.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ func newCmdTUI(streams genericclioptions.IOStreams) *cobra.Command {
},
}

addKubeOptionsFlags(cmd, kubeO)

return cmd
}

Expand Down

0 comments on commit 7a545bc

Please sign in to comment.