diff --git a/Makefile b/Makefile index df40af2..51f7fbb 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,4 @@ format: install: GO111MODULE=on go install -v -all: install vendor +all: format install diff --git a/client/client.go b/client/client.go index 91ec9e3..5f750b2 100644 --- a/client/client.go +++ b/client/client.go @@ -12,6 +12,7 @@ import ( ) type Aggregation int + const ( None Aggregation = iota Pod @@ -19,10 +20,10 @@ const ( ) type Args struct { - Namespace string - KubeConfig string + Namespace string + KubeConfig string NamespaceBlacklist []string - Aggregation Aggregation + Aggregation Aggregation } func Run(args *Args) error {