mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-07-10 00:51:09 +00:00
* Select node by pod. * Removed watch pod by regex. Irrelevant for now. * Changed default image to develop:latest.
17 lines
311 B
Go
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{}
|