diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f26d3e911..b1e744d53 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,7 +7,7 @@ Please read and follow the guidelines below. ## Communication -* Before starting work on a major feature, please reach out to us via [GitHub](https://github.com/kubeshark/kubeshark), [Discord](https://discord.gg/WkvRGMUcx7), [Slack](https://join.slack.com/t/kubeshark/shared_invite/zt-1k3sybpq9-uAhFkuPJiJftKniqrGHGhg), [email](mailto:info@kubehq.io), etc. We will make sure no one else is already working on it. A _major feature_ is defined as any change that is > 100 LOC altered (not including tests), or changes any user-facing behavior +* Before starting work on a major feature, please reach out to us via [GitHub](https://github.com/kubeshark/kubeshark), [Discord](https://discord.gg/WkvRGMUcx7), [Slack](https://join.slack.com/t/kubeshark/shared_invite/zt-1k3sybpq9-uAhFkuPJiJftKniqrGHGhg), [email](mailto:info@kubeshark.com), etc. We will make sure no one else is already working on it. A _major feature_ is defined as any change that is > 100 LOC altered (not including tests), or changes any user-facing behavior * Small patches and bug fixes don't need prior communication. ## Contribution Requirements diff --git a/README.md b/README.md index 6ebd89a8d..292e79de2 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@

Want to see Kubeshark in action right now? Visit this - live demo deployment of Kubeshark. + live demo deployment of Kubeshark.

@@ -77,7 +77,7 @@ kubeshark clean Add the Helm repository and install the chart: ```shell -helm repo add kubeshark https://helm.kubehq.com +helm repo add kubeshark https://helm.kubeshark.com helm install kubeshark kubeshark/kubeshark ``` Follow the on-screen instructions how to connect to the dashboard. diff --git a/cmd/pcapDumpRunner.go b/cmd/pcapDumpRunner.go index 0c331fb8c..ab4a3a102 100644 --- a/cmd/pcapDumpRunner.go +++ b/cmd/pcapDumpRunner.go @@ -24,7 +24,7 @@ import ( ) const ( - label = "app.kubehq.com/app=worker" + label = "app.kubeshark.com/app=worker" srcDir = "pcapdump" maxSnaplen uint32 = 262144 maxTimePerFile = time.Minute * 5 diff --git a/config/configStructs/tapConfig.go b/config/configStructs/tapConfig.go index bc3938cf6..31d07fcb2 100644 --- a/config/configStructs/tapConfig.go +++ b/config/configStructs/tapConfig.go @@ -207,7 +207,7 @@ type FrontRoutingConfig struct { } type ReleaseConfig struct { - Repo string `yaml:"repo" json:"repo" default:"https://helm.kubehq.com"` + Repo string `yaml:"repo" json:"repo" default:"https://helm.kubeshark.com"` Name string `yaml:"name" json:"name" default:"kubeshark"` Namespace string `yaml:"namespace" json:"namespace" default:"default"` } diff --git a/helm-chart/Chart.yaml b/helm-chart/Chart.yaml index f86c7a59d..52cf0bbb8 100644 --- a/helm-chart/Chart.yaml +++ b/helm-chart/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: kubeshark version: "52.11.7" description: The API Traffic Analyzer for Kubernetes -home: https://www.kubehq.com +home: https://kubeshark.com keywords: - kubeshark - packet capture @@ -16,9 +16,9 @@ keywords: - api kubeVersion: '>= 1.16.0-0' maintainers: - - email: info@kubehq.com + - email: support@kubeshark.com name: Kubeshark - url: https://www.kubehq.com + url: https://kubeshark.com sources: - https://github.com/kubeshark/kubeshark/tree/master/helm-chart type: application diff --git a/helm-chart/README.md b/helm-chart/README.md index 2a96f93a8..4de14197e 100644 --- a/helm-chart/README.md +++ b/helm-chart/README.md @@ -5,7 +5,7 @@ Add the Helm repo for Kubeshark: ```shell -helm repo add kubeshark https://helm.kubehq.com +helm repo add kubeshark https://helm.kubeshark.com ``` then install Kubeshark: @@ -145,7 +145,7 @@ Example for overriding image names: | `tap.capture.dbMaxSize` | Maximum size for capture database (e.g., `4Gi`, `2000Mi`). When empty, automatically uses 80% of allocated storage (`tap.storageLimit`). | `""` | | `tap.snapshots.storageClass` | Storage class for snapshots volume. When empty, uses `emptyDir`. When set, creates a PVC with this storage class | `""` | | `tap.snapshots.storageSize` | Storage size for snapshots volume (supports K8s quantity format: `1Gi`, `500Mi`, etc.) | `10Gi` | -| `tap.release.repo` | URL of the Helm chart repository | `https://helm.kubehq.com` | +| `tap.release.repo` | URL of the Helm chart repository | `https://helm.kubeshark.com` | | `tap.release.name` | Helm release name | `kubeshark` | | `tap.release.namespace` | Helm release namespace | `default` | | `tap.persistentStorage` | Use `persistentVolumeClaim` instead of `emptyDir` | `false` | diff --git a/helm-chart/templates/04-hub-deployment.yaml b/helm-chart/templates/04-hub-deployment.yaml index 9d0febb9a..be8a3e68e 100644 --- a/helm-chart/templates/04-hub-deployment.yaml +++ b/helm-chart/templates/04-hub-deployment.yaml @@ -3,7 +3,7 @@ apiVersion: apps/v1 kind: Deployment metadata: labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.labels" . | nindent 4 }} {{- if .Values.tap.annotations }} annotations: @@ -15,12 +15,12 @@ spec: replicas: 1 # Set the desired number of replicas selector: matchLabels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.selectorLabels" . | nindent 6 }} template: metadata: labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.labels" . | nindent 8 }} spec: dnsPolicy: ClusterFirstWithHostNet @@ -76,7 +76,7 @@ spec: - name: SENTRY_ENVIRONMENT value: '{{ .Values.tap.sentry.environment }}' - name: KUBESHARK_CLOUD_API_URL - value: 'https://api.kubehq.com' + value: 'https://api.kubeshark.com' - name: PROFILING_ENABLED value: '{{ .Values.tap.pprof.enabled }}' {{- if .Values.tap.docker.overrideImage.hub }} diff --git a/helm-chart/templates/05-hub-service.yaml b/helm-chart/templates/05-hub-service.yaml index c800e27f6..90b8b0b1c 100644 --- a/helm-chart/templates/05-hub-service.yaml +++ b/helm-chart/templates/05-hub-service.yaml @@ -3,7 +3,7 @@ apiVersion: v1 kind: Service metadata: labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.labels" . | nindent 4 }} {{- if .Values.tap.annotations }} annotations: @@ -17,5 +17,5 @@ spec: port: 80 targetPort: 8080 selector: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub type: ClusterIP diff --git a/helm-chart/templates/06-front-deployment.yaml b/helm-chart/templates/06-front-deployment.yaml index a708513e9..268ac8539 100644 --- a/helm-chart/templates/06-front-deployment.yaml +++ b/helm-chart/templates/06-front-deployment.yaml @@ -2,7 +2,7 @@ apiVersion: apps/v1 kind: Deployment metadata: labels: - app.kubehq.com/app: front + app.kubeshark.com/app: front {{- include "kubeshark.labels" . | nindent 4 }} {{- if .Values.tap.annotations }} annotations: @@ -14,12 +14,12 @@ spec: replicas: 1 # Set the desired number of replicas selector: matchLabels: - app.kubehq.com/app: front + app.kubeshark.com/app: front {{- include "kubeshark.selectorLabels" . | nindent 6 }} template: metadata: labels: - app.kubehq.com/app: front + app.kubeshark.com/app: front {{- include "kubeshark.labels" . | nindent 8 }} spec: containers: diff --git a/helm-chart/templates/07-front-service.yaml b/helm-chart/templates/07-front-service.yaml index 90ba1abe3..0221df3c9 100644 --- a/helm-chart/templates/07-front-service.yaml +++ b/helm-chart/templates/07-front-service.yaml @@ -16,5 +16,5 @@ spec: port: 80 targetPort: 8080 selector: - app.kubehq.com/app: front + app.kubeshark.com/app: front type: ClusterIP diff --git a/helm-chart/templates/09-worker-daemon-set.yaml b/helm-chart/templates/09-worker-daemon-set.yaml index cc8835dd7..4ae71c0a9 100644 --- a/helm-chart/templates/09-worker-daemon-set.yaml +++ b/helm-chart/templates/09-worker-daemon-set.yaml @@ -3,7 +3,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: labels: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker sidecar.istio.io/inject: "false" {{- include "kubeshark.labels" . | nindent 4 }} {{- if .Values.tap.annotations }} @@ -15,12 +15,12 @@ metadata: spec: selector: matchLabels: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker {{- include "kubeshark.selectorLabels" . | nindent 6 }} template: metadata: labels: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker {{- include "kubeshark.labels" . | nindent 8 }} name: kubeshark-worker-daemon-set namespace: kubeshark @@ -130,7 +130,7 @@ spec: - name: TCP_STREAM_CHANNEL_TIMEOUT_SHOW value: '{{ .Values.tap.misc.tcpStreamChannelTimeoutShow }}' - name: KUBESHARK_CLOUD_API_URL - value: 'https://api.kubehq.com' + value: 'https://api.kubeshark.com' - name: PROFILING_ENABLED value: '{{ .Values.tap.pprof.enabled }}' - name: SENTRY_ENABLED diff --git a/helm-chart/templates/12-config-map.yaml b/helm-chart/templates/12-config-map.yaml index d0ce5036e..59a35e700 100644 --- a/helm-chart/templates/12-config-map.yaml +++ b/helm-chart/templates/12-config-map.yaml @@ -4,7 +4,7 @@ metadata: name: {{ include "kubeshark.configmapName" . }} namespace: {{ .Release.Namespace }} labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.labels" . | nindent 4 }} data: POD_REGEX: '{{ .Values.tap.regex }}' diff --git a/helm-chart/templates/13-secret.yaml b/helm-chart/templates/13-secret.yaml index 2b3d6bd58..cf6f92c15 100644 --- a/helm-chart/templates/13-secret.yaml +++ b/helm-chart/templates/13-secret.yaml @@ -4,7 +4,7 @@ metadata: name: {{ include "kubeshark.secretName" . }} namespace: {{ .Release.Namespace }} labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.labels" . | nindent 4 }} stringData: LICENSE: '{{ .Values.license }}' @@ -20,7 +20,7 @@ metadata: name: kubeshark-saml-x509-crt-secret namespace: {{ .Release.Namespace }} labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.labels" . | nindent 4 }} stringData: AUTH_SAML_X509_CRT: | @@ -34,7 +34,7 @@ metadata: name: kubeshark-saml-x509-key-secret namespace: {{ .Release.Namespace }} labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.labels" . | nindent 4 }} stringData: AUTH_SAML_X509_KEY: | diff --git a/helm-chart/templates/15-worker-service-metrics.yaml b/helm-chart/templates/15-worker-service-metrics.yaml index 2268bf562..bcf02d49b 100644 --- a/helm-chart/templates/15-worker-service-metrics.yaml +++ b/helm-chart/templates/15-worker-service-metrics.yaml @@ -14,7 +14,7 @@ metadata: namespace: {{ .Release.Namespace }} spec: selector: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker {{- include "kubeshark.labels" . | nindent 4 }} ports: - name: metrics diff --git a/helm-chart/templates/16-hub-service-metrics.yaml b/helm-chart/templates/16-hub-service-metrics.yaml index 61571906c..a42f26d04 100644 --- a/helm-chart/templates/16-hub-service-metrics.yaml +++ b/helm-chart/templates/16-hub-service-metrics.yaml @@ -14,7 +14,7 @@ metadata: namespace: {{ .Release.Namespace }} spec: selector: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.labels" . | nindent 4 }} ports: - name: metrics diff --git a/helm-chart/templates/17-network-policies.yaml b/helm-chart/templates/17-network-policies.yaml index f198ce627..381f9592f 100644 --- a/helm-chart/templates/17-network-policies.yaml +++ b/helm-chart/templates/17-network-policies.yaml @@ -12,7 +12,7 @@ metadata: spec: podSelector: matchLabels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub policyTypes: - Ingress - Egress @@ -40,7 +40,7 @@ metadata: spec: podSelector: matchLabels: - app.kubehq.com/app: front + app.kubeshark.com/app: front policyTypes: - Ingress - Egress @@ -65,7 +65,7 @@ metadata: spec: podSelector: matchLabels: - app.kubehq.com/app: dex + app.kubeshark.com/app: dex policyTypes: - Ingress - Egress @@ -90,7 +90,7 @@ metadata: spec: podSelector: matchLabels: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker policyTypes: - Ingress - Egress diff --git a/helm-chart/templates/18-dex-deployment.yaml b/helm-chart/templates/18-dex-deployment.yaml index a743123d7..647a8521a 100644 --- a/helm-chart/templates/18-dex-deployment.yaml +++ b/helm-chart/templates/18-dex-deployment.yaml @@ -5,7 +5,7 @@ apiVersion: apps/v1 kind: Deployment metadata: labels: - app.kubehq.com/app: dex + app.kubeshark.com/app: dex {{- include "kubeshark.labels" . | nindent 4 }} {{- if .Values.tap.annotations }} annotations: @@ -17,12 +17,12 @@ spec: replicas: 1 # Set the desired number of replicas selector: matchLabels: - app.kubehq.com/app: dex + app.kubeshark.com/app: dex {{- include "kubeshark.selectorLabels" . | nindent 6 }} template: metadata: labels: - app.kubehq.com/app: dex + app.kubeshark.com/app: dex {{- include "kubeshark.labels" . | nindent 8 }} spec: containers: diff --git a/helm-chart/templates/19-dex-service.yaml b/helm-chart/templates/19-dex-service.yaml index 12fe71c9c..aceca8388 100644 --- a/helm-chart/templates/19-dex-service.yaml +++ b/helm-chart/templates/19-dex-service.yaml @@ -5,7 +5,7 @@ apiVersion: v1 kind: Service metadata: labels: - app.kubehq.com/app: dex + app.kubeshark.com/app: dex {{- include "kubeshark.labels" . | nindent 4 }} {{- if .Values.tap.annotations }} annotations: @@ -19,7 +19,7 @@ spec: port: 80 targetPort: 5556 selector: - app.kubehq.com/app: dex + app.kubeshark.com/app: dex type: ClusterIP {{- end }} diff --git a/helm-chart/templates/20-dex-secret.yaml b/helm-chart/templates/20-dex-secret.yaml index 912f242b3..a33658287 100644 --- a/helm-chart/templates/20-dex-secret.yaml +++ b/helm-chart/templates/20-dex-secret.yaml @@ -6,7 +6,7 @@ metadata: name: kubeshark-dex-conf-secret namespace: {{ .Release.Namespace }} labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub {{- include "kubeshark.labels" . | nindent 4 }} data: dex-config.yaml: {{ .Values.tap.auth.dexConfig | toYaml | b64enc | quote }} diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index d2da0e740..f864a24ea 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -40,7 +40,7 @@ tap: storageClass: "" storageSize: 20Gi release: - repo: https://helm.kubehq.com + repo: https://helm.kubeshark.com name: kubeshark namespace: default persistentStorage: false diff --git a/kubernetes/consts.go b/kubernetes/consts.go index 6460f212e..eb2c5be41 100644 --- a/kubernetes/consts.go +++ b/kubernetes/consts.go @@ -8,5 +8,5 @@ const ( HubServiceName = HubPodName K8sAllNamespaces = "" MinKubernetesServerVersion = "1.16.0" - AppLabelKey = "app.kubehq.com/app" + AppLabelKey = "app.kubeshark.com/app" ) diff --git a/manifests/complete.yaml b/manifests/complete.yaml index 46b83fb73..17cba8013 100644 --- a/manifests/complete.yaml +++ b/manifests/complete.yaml @@ -14,7 +14,7 @@ metadata: spec: podSelector: matchLabels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub policyTypes: - Ingress - Egress @@ -44,7 +44,7 @@ metadata: spec: podSelector: matchLabels: - app.kubehq.com/app: front + app.kubeshark.com/app: front policyTypes: - Ingress - Egress @@ -71,7 +71,7 @@ metadata: spec: podSelector: matchLabels: - app.kubehq.com/app: dex + app.kubeshark.com/app: dex policyTypes: - Ingress - Egress @@ -98,7 +98,7 @@ metadata: spec: podSelector: matchLabels: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker policyTypes: - Ingress - Egress @@ -131,7 +131,7 @@ metadata: name: kubeshark-secret namespace: default labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -150,7 +150,7 @@ metadata: name: kubeshark-saml-x509-crt-secret namespace: default labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -166,7 +166,7 @@ metadata: name: kubeshark-saml-x509-key-secret namespace: default labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -245,7 +245,7 @@ metadata: name: kubeshark-config-map namespace: default labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -444,7 +444,7 @@ apiVersion: v1 kind: Service metadata: labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -458,7 +458,7 @@ spec: port: 80 targetPort: 8080 selector: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub type: ClusterIP --- # Source: kubeshark/templates/07-front-service.yaml @@ -479,7 +479,7 @@ spec: port: 80 targetPort: 8080 selector: - app.kubehq.com/app: front + app.kubeshark.com/app: front type: ClusterIP --- # Source: kubeshark/templates/15-worker-service-metrics.yaml @@ -499,7 +499,7 @@ metadata: namespace: default spec: selector: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -528,7 +528,7 @@ metadata: namespace: default spec: selector: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -545,7 +545,7 @@ apiVersion: apps/v1 kind: DaemonSet metadata: labels: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker sidecar.istio.io/inject: "false" helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark @@ -557,13 +557,13 @@ metadata: spec: selector: matchLabels: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark template: metadata: labels: - app.kubehq.com/app: worker + app.kubeshark.com/app: worker helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -631,7 +631,7 @@ spec: - name: TCP_STREAM_CHANNEL_TIMEOUT_SHOW value: 'false' - name: KUBESHARK_CLOUD_API_URL - value: 'https://api.kubehq.com' + value: 'https://api.kubeshark.com' - name: PROFILING_ENABLED value: 'false' - name: SENTRY_ENABLED @@ -775,7 +775,7 @@ apiVersion: apps/v1 kind: Deployment metadata: labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -787,13 +787,13 @@ spec: replicas: 1 # Set the desired number of replicas selector: matchLabels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark template: metadata: labels: - app.kubehq.com/app: hub + app.kubeshark.com/app: hub helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -834,7 +834,7 @@ spec: - name: SENTRY_ENVIRONMENT value: 'production' - name: KUBESHARK_CLOUD_API_URL - value: 'https://api.kubehq.com' + value: 'https://api.kubeshark.com' - name: PROFILING_ENABLED value: 'false' image: 'docker.io/kubeshark/hub:v52.11' @@ -904,7 +904,7 @@ apiVersion: apps/v1 kind: Deployment metadata: labels: - app.kubehq.com/app: front + app.kubeshark.com/app: front helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark @@ -916,13 +916,13 @@ spec: replicas: 1 # Set the desired number of replicas selector: matchLabels: - app.kubehq.com/app: front + app.kubeshark.com/app: front app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark template: metadata: labels: - app.kubehq.com/app: front + app.kubeshark.com/app: front helm.sh/chart: kubeshark-52.11.7 app.kubernetes.io/name: kubeshark app.kubernetes.io/instance: kubeshark diff --git a/manifests/tls/cluster-issuer.yaml b/manifests/tls/cluster-issuer.yaml index e8fc41dd3..cbb50cd02 100644 --- a/manifests/tls/cluster-issuer.yaml +++ b/manifests/tls/cluster-issuer.yaml @@ -5,7 +5,7 @@ metadata: spec: acme: server: https://acme-v02.api.letsencrypt.org/directory - email: info@kubehq.com + email: info@kubeshark.com privateKeySecretRef: name: letsencrypt-prod-key solvers: diff --git a/misc/consts.go b/misc/consts.go index 400b2131e..2d7a7b4d7 100644 --- a/misc/consts.go +++ b/misc/consts.go @@ -10,8 +10,8 @@ var ( Software = "Kubeshark" Program = "kubeshark" Description = "The API Traffic Analyzer for Kubernetes" - Website = "https://www.kubehq.com" - Email = "support@kubehq.io" + Website = "https://kubeshark.com" + Email = "support@kubeshark.com" Ver = "0.0.0" Branch = "master" GitCommitHash = "" // this var is overridden using ldflags in makefile when building