diff --git a/config/configStruct.go b/config/configStruct.go index 4b564a850..87d62173c 100644 --- a/config/configStruct.go +++ b/config/configStruct.go @@ -181,7 +181,6 @@ type ConfigStruct struct { License string `yaml:"license" json:"license" default:""` CloudApiUrl string `yaml:"cloudApiUrl" json:"cloudApiUrl" default:"https://api.kubeshark.com"` CloudLicenseEnabled bool `yaml:"cloudLicenseEnabled" json:"cloudLicenseEnabled" default:"true"` - AiAssistantEnabled bool `yaml:"aiAssistantEnabled" json:"aiAssistantEnabled" default:"true"` DemoModeEnabled bool `yaml:"demoModeEnabled" json:"demoModeEnabled" default:"false"` SupportChatEnabled bool `yaml:"supportChatEnabled" json:"supportChatEnabled" default:"false"` BetaEnabled bool `yaml:"betaEnabled" json:"betaEnabled" default:"false"` diff --git a/helm-chart/templates/06-front-deployment.yaml b/helm-chart/templates/06-front-deployment.yaml index 268ac8539..8a728496b 100644 --- a/helm-chart/templates/06-front-deployment.yaml +++ b/helm-chart/templates/06-front-deployment.yaml @@ -78,8 +78,6 @@ spec: {{- else -}} {{ .Values.cloudLicenseEnabled }} {{- end }}' - - name: 'REACT_APP_AI_ASSISTANT_ENABLED' - value: '{{ .Values.aiAssistantEnabled | ternary "true" "false" }}' - name: REACT_APP_SUPPORT_CHAT_ENABLED value: '{{ and .Values.supportChatEnabled .Values.internetConnectivity | ternary "true" "false" }}' - name: REACT_APP_BETA_ENABLED diff --git a/helm-chart/templates/12-config-map.yaml b/helm-chart/templates/12-config-map.yaml index c5ec94d3d..be8f100c7 100644 --- a/helm-chart/templates/12-config-map.yaml +++ b/helm-chart/templates/12-config-map.yaml @@ -73,7 +73,6 @@ data: {{- else -}} {{ .Values.cloudLicenseEnabled }} {{- end }}' - AI_ASSISTANT_ENABLED: '{{ .Values.aiAssistantEnabled | ternary "true" "false" }}' DUPLICATE_TIMEFRAME: '{{ .Values.tap.misc.duplicateTimeframe }}' ENABLED_DISSECTORS: '{{ gt (len .Values.tap.enabledDissectors) 0 | ternary (join "," .Values.tap.enabledDissectors) "" }}' CUSTOM_MACROS: '{{ toJson .Values.tap.customMacros }}' diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 6e5279101..04a4af6de 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -270,7 +270,6 @@ headless: false license: "" cloudApiUrl: "https://api.kubeshark.com" cloudLicenseEnabled: true -aiAssistantEnabled: true demoModeEnabled: false supportChatEnabled: false betaEnabled: false