Skip to content

Commit

Permalink
hide app labels in kapp ls
Browse files Browse the repository at this point in the history
  • Loading branch information
cppforlife committed Apr 23, 2020
1 parent 979f80f commit 640c7c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/kapp/cmd/app/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ func (o *ListOptions) Run() error {
return err
}

labelHeader := uitable.NewHeader("Label")
labelHeader.Hidden = true

lcsHeader := uitable.NewHeader("Last Change Successful")
lcsHeader.Title = "Lcs"

Expand All @@ -73,7 +76,7 @@ func (o *ListOptions) Run() error {
Header: []uitable.Header{
nsHeader,
uitable.NewHeader("Name"),
uitable.NewHeader("Label"),
labelHeader,
uitable.NewHeader("Namespaces"),
lcsHeader,
lcaHeader,
Expand Down

0 comments on commit 640c7c4

Please sign in to comment.