1
0
mirror of synced 2026-02-06 19:05:55 +00:00

Add no-header flag for get commands to omit printing the header

Signed-off-by: Alex Petrov <alex.petrov.vt@gmail.com>
This commit is contained in:
Alex Petrov
2021-07-05 19:59:55 -04:00
parent dd5e6377f8
commit b1a9583262

View File

@@ -40,6 +40,7 @@ var getCmd = &cobra.Command{
type GetFlags struct {
allNamespaces bool
noHeader bool
}
var getArgs GetFlags
@@ -47,6 +48,7 @@ var getArgs GetFlags
func init() {
getCmd.PersistentFlags().BoolVarP(&getArgs.allNamespaces, "all-namespaces", "A", false,
"list the requested object(s) across all namespaces")
getCmd.PersistentFlags().BoolVarP(&getArgs.noHeader, "no-header", "", false, "skip the header when printing the results")
rootCmd.AddCommand(getCmd)
}
@@ -117,7 +119,10 @@ func (get getCommand) run(cmd *cobra.Command, args []string) error {
return nil
}
header := get.list.headers(getArgs.allNamespaces)
var header []string
if !getArgs.noHeader {
header = get.list.headers(getArgs.allNamespaces)
}
var rows [][]string
for i := 0; i < get.list.len(); i++ {
row := get.list.summariseItem(i, getArgs.allNamespaces, getAll)