Change supportChatEnabled to be true by default.

This commit is contained in:
Alon Girmonsky
2024-07-29 17:16:21 -07:00
parent a699755858
commit 9c9cefc406
3 changed files with 3 additions and 3 deletions

View File

@@ -95,7 +95,7 @@ type ConfigStruct struct {
HeadlessMode bool `yaml:"headless" json:"headless" default:"false"` HeadlessMode bool `yaml:"headless" json:"headless" default:"false"`
License string `yaml:"license" json:"license" default:""` License string `yaml:"license" json:"license" default:""`
CloudLicenseEnabled bool `yaml:"cloudLicenseEnabled" json:"cloudLicenseEnabled" default:"true"` 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"` Scripting configStructs.ScriptingConfig `yaml:"scripting" json:"scripting"`
Manifests ManifestsConfig `yaml:"manifests,omitempty" json:"manifests,omitempty"` Manifests ManifestsConfig `yaml:"manifests,omitempty" json:"manifests,omitempty"`
Timezone string `yaml:"timezone" json:"timezone"` Timezone string `yaml:"timezone" json:"timezone"`

View File

@@ -59,7 +59,7 @@ spec:
{{ .Values.cloudLicenseEnabled }} {{ .Values.cloudLicenseEnabled }}
{{- end }}' {{- end }}'
- name: REACT_APP_SUPPORT_CHAT_ENABLED - 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 }} {{- if .Values.tap.docker.overrideTag.front }}
image: '{{ .Values.tap.docker.registry }}/front:{{ .Values.tap.docker.overrideTag.front }}' image: '{{ .Values.tap.docker.registry }}/front:{{ .Values.tap.docker.overrideTag.front }}'
{{ else }} {{ else }}

View File

@@ -137,7 +137,7 @@ dumpLogs: false
headless: false headless: false
license: "" license: ""
cloudLicenseEnabled: true cloudLicenseEnabled: true
supportChatEnabled: false supportChatEnabled: true
scripting: scripting:
env: {} env: {}
source: "" source: ""