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: ""