mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-02-14 18:09:51 +00:00
* 🚑 Migrate to `kubehq.com` in helm values * 🚑 Migrate to `kubehq.com` in cloud-api-url envs * 🚑 Migrate to `kubehq.com` in manifest label keys * 🚑 Migrate to `kubehq.com` in `Chart.yaml` * 🚑 Migrate to `kubehq.com` in helm-chart notes/readme
13 lines
402 B
Go
13 lines
402 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.kubehq.com/app"
|
|
)
|