mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-07-21 11:40:56 +00:00
🔨 Change api2BetaEnabled
to betaEnabled
This commit is contained in:
parent
026aff35e6
commit
6e377072cf
@ -175,7 +175,7 @@ type ConfigStruct struct {
|
|||||||
AiAssistantEnabled bool `yaml:"aiAssistantEnabled" json:"aiAssistantEnabled" default:"true"`
|
AiAssistantEnabled bool `yaml:"aiAssistantEnabled" json:"aiAssistantEnabled" default:"true"`
|
||||||
DemoModeEnabled bool `yaml:"demoModeEnabled" json:"demoModeEnabled" default:"false"`
|
DemoModeEnabled bool `yaml:"demoModeEnabled" json:"demoModeEnabled" default:"false"`
|
||||||
SupportChatEnabled bool `yaml:"supportChatEnabled" json:"supportChatEnabled" default:"true"`
|
SupportChatEnabled bool `yaml:"supportChatEnabled" json:"supportChatEnabled" default:"true"`
|
||||||
Api2BetaEnabled bool `yaml:"api2BetaEnabled" json:"api2BetaEnabled" default:"false"`
|
BetaEnabled bool `yaml:"betaEnabled" json:"betaEnabled" default:"false"`
|
||||||
InternetConnectivity bool `yaml:"internetConnectivity" json:"internetConnectivity" default:"true"`
|
InternetConnectivity bool `yaml:"internetConnectivity" json:"internetConnectivity" 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"`
|
||||||
|
@ -80,8 +80,8 @@ spec:
|
|||||||
value: '{{ .Values.aiAssistantEnabled | ternary "true" "false" }}'
|
value: '{{ .Values.aiAssistantEnabled | ternary "true" "false" }}'
|
||||||
- name: REACT_APP_SUPPORT_CHAT_ENABLED
|
- name: REACT_APP_SUPPORT_CHAT_ENABLED
|
||||||
value: '{{ and .Values.supportChatEnabled .Values.internetConnectivity | ternary "true" "false" }}'
|
value: '{{ and .Values.supportChatEnabled .Values.internetConnectivity | ternary "true" "false" }}'
|
||||||
- name: REACT_APP_API2_BETA_ENABLED
|
- name: REACT_APP_BETA_ENABLED
|
||||||
value: '{{ .Values.api2BetaEnabled | ternary "true" "false" }}'
|
value: '{{ default false .Values.betaEnabled | ternary "true" "false" }}'
|
||||||
- name: REACT_APP_DISSECTORS_UPDATING_ENABLED
|
- name: REACT_APP_DISSECTORS_UPDATING_ENABLED
|
||||||
value: '{{ .Values.tap.liveConfigMapChangesDisabled | ternary "false" "true" }}'
|
value: '{{ .Values.tap.liveConfigMapChangesDisabled | ternary "false" "true" }}'
|
||||||
- name: REACT_APP_SENTRY_ENABLED
|
- name: REACT_APP_SENTRY_ENABLED
|
||||||
|
@ -251,7 +251,7 @@ cloudLicenseEnabled: true
|
|||||||
aiAssistantEnabled: true
|
aiAssistantEnabled: true
|
||||||
demoModeEnabled: false
|
demoModeEnabled: false
|
||||||
supportChatEnabled: true
|
supportChatEnabled: true
|
||||||
api2BetaEnabled: false
|
betaEnabled: true
|
||||||
internetConnectivity: true
|
internetConnectivity: true
|
||||||
scripting:
|
scripting:
|
||||||
env: {}
|
env: {}
|
||||||
|
Loading…
Reference in New Issue
Block a user