mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-10-22 07:51:30 +00:00
14 lines
239 B
Go
14 lines
239 B
Go
package config
|
|
|
|
type Options struct {
|
|
DisplayVersion bool
|
|
Quiet bool
|
|
NoDashboard bool
|
|
DashboardPort uint16
|
|
Namespace string
|
|
AllNamespaces bool
|
|
KubeConfigPath string
|
|
}
|
|
|
|
var Configuration = &Options{}
|