mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-07-03 19:40:05 +00:00
🔨 Support chat flag (#1573)
* 🔨 Add `supportChatEnabled` helm value * 🔨 Add `REACT_APP_SUPPORT_CHAT_ENABLED` env to `front`
This commit is contained in:
parent
6ea1073fe9
commit
be86ea8ecb
@ -95,6 +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"`
|
||||||
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"`
|
||||||
|
@ -58,6 +58,8 @@ spec:
|
|||||||
{{- else -}}
|
{{- else -}}
|
||||||
{{ .Values.cloudLicenseEnabled }}
|
{{ .Values.cloudLicenseEnabled }}
|
||||||
{{- end }}'
|
{{- end }}'
|
||||||
|
- name: REACT_APP_SUPPORT_CHAT_ENABLED
|
||||||
|
value: '{{ not .Values.supportChatEnabled | ternary "false" .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 }}
|
||||||
|
@ -137,6 +137,7 @@ dumpLogs: false
|
|||||||
headless: false
|
headless: false
|
||||||
license: ""
|
license: ""
|
||||||
cloudLicenseEnabled: true
|
cloudLicenseEnabled: true
|
||||||
|
supportChatEnabled: false
|
||||||
scripting:
|
scripting:
|
||||||
env: {}
|
env: {}
|
||||||
source: ""
|
source: ""
|
||||||
|
Loading…
Reference in New Issue
Block a user