mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-04-28 03:52:23 +00:00
* Add hub to the list of containers in `pprof` command and add flags to `pprof` command * Reduce duplication --------- Co-authored-by: Alon Girmonsky <1990761+alongir@users.noreply.github.com>
13 lines
404 B
Go
13 lines
404 B
Go
package kubernetes
|
|
|
|
const (
|
|
SELF_RESOURCES_PREFIX = "kubeshark-"
|
|
FrontPodName = SELF_RESOURCES_PREFIX + "front"
|
|
FrontServiceName = FrontPodName
|
|
HubPodName = SELF_RESOURCES_PREFIX + "hub"
|
|
HubServiceName = HubPodName
|
|
K8sAllNamespaces = ""
|
|
MinKubernetesServerVersion = "1.16.0"
|
|
AppLabelKey = "app.kubeshark.co/app"
|
|
)
|