From 83d14be4480ea3c03b444a2cc0b1fb320f671211 Mon Sep 17 00:00:00 2001 From: tiptophelmet Date: Mon, 9 Sep 2024 19:54:52 +0300 Subject: [PATCH] :hammer: Add `sentryEnabled` helm value --- config/configStruct.go | 1 + helm-chart/README.md | 1 + helm-chart/values.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/config/configStruct.go b/config/configStruct.go index c63c909be..323824450 100644 --- a/config/configStruct.go +++ b/config/configStruct.go @@ -108,6 +108,7 @@ type ConfigStruct struct { License string `yaml:"license" json:"license" default:""` CloudLicenseEnabled bool `yaml:"cloudLicenseEnabled" json:"cloudLicenseEnabled" default:"true"` SupportChatEnabled bool `yaml:"supportChatEnabled" json:"supportChatEnabled" default:"true"` + SentryEnabled bool `yaml:"sentryEnabled" json:"sentryEnabled" default:"true"` InternetConnectivity bool `yaml:"internetConnectivity" json:"internetConnectivity" default:"true"` DissectorsUpdatingEnabled bool `yaml:"dissectorsUpdatingEnabled" json:"dissectorsUpdatingEnabled" default:"true"` Scripting configStructs.ScriptingConfig `yaml:"scripting" json:"scripting"` diff --git a/helm-chart/README.md b/helm-chart/README.md index 67b1a4fa1..73c79f62d 100644 --- a/helm-chart/README.md +++ b/helm-chart/README.md @@ -187,6 +187,7 @@ Please refer to [metrics](./metrics.md) documentation for details. | `scripting.watchScripts` | Enable watch mode for the scripts in source directory | `true` | | `timezone` | IANA time zone applied to time shown in the front-end | `""` (local time zone applies) | | `supportChatEnabled` | Enable real-time support chat channel based on Intercom | `true` | +| `sentryEnabled` | Enable real-time error tracking - helps our team analyze Kubeshark errors | `true` | | `internetConnectivity` | Turns off API requests that are dependant on Internet connectivity such as `telemetry` and `online-support`. | `true` | | `dissectorsUpdatingEnabled` | Turns off UI for enabling/disabling dissectors | `true` | diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 9970a5c9a..709a06948 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -151,6 +151,7 @@ headless: false license: "" cloudLicenseEnabled: true supportChatEnabled: true +sentryEnabled: false internetConnectivity: true dissectorsUpdatingEnabled: true scripting: