Update README.md, root.go, and 4 more files...

This commit is contained in:
up9-github
2021-04-21 17:35:08 +03:00
parent 4afd3ec9ac
commit baa33427ff
6 changed files with 336 additions and 35 deletions

13
cli/config/config.go Normal file
View File

@@ -0,0 +1,13 @@
package config
type Options struct {
DisplayVersion bool
Quiet bool
NoDashboard bool
DashboardPort uint16
Namespace string
AllNamespaces bool
KubeConfigPath string
}
var Configuration = &Options{}