mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-04-19 00:49:30 +00:00
16 lines
289 B
Go
16 lines
289 B
Go
package config
|
|
|
|
type Options struct {
|
|
DisplayVersion bool
|
|
Quiet bool
|
|
NoDashboard bool
|
|
DashboardPort uint16
|
|
Namespace string
|
|
AllNamespaces bool
|
|
KubeConfigPath string
|
|
MizuImage string
|
|
MizuPodPort uint16
|
|
}
|
|
|
|
var Configuration = &Options{}
|