mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-07-11 09:29:28 +00:00
* Renamed dashboard -> GUI/web interface. * Commented out --quiet, removed unused config variables. * Quiter output when calling unimplemented subcommands.
13 lines
208 B
Go
13 lines
208 B
Go
package config
|
|
|
|
type Options struct {
|
|
NoGUI bool
|
|
GuiPort uint16
|
|
Namespace string
|
|
KubeConfigPath string
|
|
MizuImage string
|
|
MizuPodPort uint16
|
|
}
|
|
|
|
var Configuration = &Options{}
|