diff --git a/config/configStructs/tapConfig.go b/config/configStructs/tapConfig.go index f0f72bf38..25f1e7260 100644 --- a/config/configStructs/tapConfig.go +++ b/config/configStructs/tapConfig.go @@ -53,7 +53,6 @@ type WorkerConfig struct { } type HubConfig struct { - Port uint16 `yaml:"port" json:"port" default:"8898"` SrvPort uint16 `yaml:"srvPort" json:"srvPort" default:"8898"` } diff --git a/helm-chart/templates/06-front-deployment.yaml b/helm-chart/templates/06-front-deployment.yaml index f9c0235a0..72c70dd1d 100644 --- a/helm-chart/templates/06-front-deployment.yaml +++ b/helm-chart/templates/06-front-deployment.yaml @@ -26,10 +26,6 @@ spec: - env: - name: REACT_APP_DEFAULT_FILTER value: ' ' - - name: REACT_APP_HUB_HOST - value: ' ' - - name: REACT_APP_HUB_PORT - value: '{{ .Values.tap.ingress.enabled | ternary "/api" (print ":" .Values.tap.proxy.front.port "/api") }}' - name: REACT_APP_AUTH_ENABLED value: '{{ .Values.tap.auth.enabled }}' image: '{{ .Values.tap.docker.registry }}/front:{{ not (eq .Values.tap.docker.tag "") | ternary .Values.tap.docker.tag (printf "v%s" .Chart.Version) }}' diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 521961a88..fe041796d 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -8,7 +8,6 @@ tap: worker: srvPort: 30001 hub: - port: 8898 srvPort: 8898 front: port: 8899 diff --git a/manifests/complete.yaml b/manifests/complete.yaml index 595d6fd35..de9ebadb3 100644 --- a/manifests/complete.yaml +++ b/manifests/complete.yaml @@ -531,10 +531,6 @@ spec: - env: - name: REACT_APP_DEFAULT_FILTER value: ' ' - - name: REACT_APP_HUB_HOST - value: ' ' - - name: REACT_APP_HUB_PORT - value: ':8899/api' - name: REACT_APP_AUTH_ENABLED value: 'false' image: 'docker.io/kubeshark/front:v51.0.39'