Files
kubeshark/cli/config/config.go
nimrod-up9 38146a644d Select node by pod (#18)
* Select node by pod.

* Removed watch pod by regex. Irrelevant for now.

* Changed default image to develop:latest.
2021-04-29 15:46:18 +03:00

17 lines
311 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
TappedPodName string
}
var Configuration = &Options{}