From 9c9cefc406e312eddad728ed0b2fdd8d0f8bb819 Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Mon, 29 Jul 2024 17:16:21 -0700 Subject: [PATCH] Change `supportChatEnabled` to be `true` by default. --- config/configStruct.go | 2 +- helm-chart/templates/06-front-deployment.yaml | 2 +- helm-chart/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/configStruct.go b/config/configStruct.go index 5503f1f3b..64adef9a0 100644 --- a/config/configStruct.go +++ b/config/configStruct.go @@ -95,7 +95,7 @@ type ConfigStruct struct { HeadlessMode bool `yaml:"headless" json:"headless" default:"false"` License string `yaml:"license" json:"license" default:""` CloudLicenseEnabled bool `yaml:"cloudLicenseEnabled" json:"cloudLicenseEnabled" default:"true"` - SupportChatEnabled bool `yaml:"supportChatEnabled" json:"supportChatEnabled" default:"false"` + SupportChatEnabled bool `yaml:"supportChatEnabled" json:"supportChatEnabled" default:"true"` Scripting configStructs.ScriptingConfig `yaml:"scripting" json:"scripting"` Manifests ManifestsConfig `yaml:"manifests,omitempty" json:"manifests,omitempty"` Timezone string `yaml:"timezone" json:"timezone"` diff --git a/helm-chart/templates/06-front-deployment.yaml b/helm-chart/templates/06-front-deployment.yaml index eb5041a9a..c238016a4 100644 --- a/helm-chart/templates/06-front-deployment.yaml +++ b/helm-chart/templates/06-front-deployment.yaml @@ -59,7 +59,7 @@ spec: {{ .Values.cloudLicenseEnabled }} {{- end }}' - name: REACT_APP_SUPPORT_CHAT_ENABLED - value: '{{ not .Values.supportChatEnabled | ternary "false" .Values.supportChatEnabled }}' + value: '{{ not .Values.supportChatEnabled | ternary "true" .Values.supportChatEnabled }}' {{- if .Values.tap.docker.overrideTag.front }} image: '{{ .Values.tap.docker.registry }}/front:{{ .Values.tap.docker.overrideTag.front }}' {{ else }} diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index eb2bc6967..fd2ea3a34 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -137,7 +137,7 @@ dumpLogs: false headless: false license: "" cloudLicenseEnabled: true -supportChatEnabled: false +supportChatEnabled: true scripting: env: {} source: ""