diff --git a/helm-chart/templates/04-hub-deployment.yaml b/helm-chart/templates/04-hub-deployment.yaml index 123acd35f..e760c3d7c 100644 --- a/helm-chart/templates/04-hub-deployment.yaml +++ b/helm-chart/templates/04-hub-deployment.yaml @@ -42,10 +42,7 @@ spec: fieldRef: fieldPath: metadata.namespace - name: KUBESHARK_CLOUD_API_URL - valueFrom: - configMapKeyRef: - name: kubeshark-config-map - key: KUBESHARK_CLOUD_API_URL + value: 'https://api.kubeshark.co' image: '{{ .Values.tap.docker.registry }}/hub:{{ not (eq .Values.tap.docker.tag "") | ternary .Values.tap.docker.tag (printf "v%s" .Chart.Version) }}' imagePullPolicy: {{ .Values.tap.docker.imagePullPolicy }} readinessProbe: diff --git a/helm-chart/templates/09-worker-daemon-set.yaml b/helm-chart/templates/09-worker-daemon-set.yaml index 545ba07c9..dc9d10070 100644 --- a/helm-chart/templates/09-worker-daemon-set.yaml +++ b/helm-chart/templates/09-worker-daemon-set.yaml @@ -84,10 +84,7 @@ spec: - name: TCP_STREAM_CHANNEL_TIMEOUT_MS value: '{{ .Values.tap.tcpStreamChannelTimeoutMs }}' - name: KUBESHARK_CLOUD_API_URL - valueFrom: - configMapKeyRef: - name: kubeshark-config-map - key: KUBESHARK_CLOUD_API_URL + value: 'https://api.kubeshark.co' resources: limits: cpu: {{ .Values.tap.resources.sniffer.limits.cpu }} diff --git a/helm-chart/templates/12-config-map.yaml b/helm-chart/templates/12-config-map.yaml index 56b019346..3bf1b085f 100644 --- a/helm-chart/templates/12-config-map.yaml +++ b/helm-chart/templates/12-config-map.yaml @@ -22,7 +22,6 @@ data: REPLAY_DISABLED: '{{ .Values.tap.replayDisabled | ternary "true" "" }}' GLOBAL_FILTER: {{ include "kubeshark.escapeDoubleQuotes" .Values.tap.globalFilter | quote }} TRAFFIC_SAMPLE_RATE: '{{ .Values.tap.trafficSampleRate }}' - KUBESHARK_CLOUD_API_URL: 'https://api.kubeshark.co' JSON_TTL: '{{ .Values.tap.misc.jsonTTL }}' PCAP_TTL: '{{ .Values.tap.misc.pcapTTL }}' PCAP_ERROR_TTL: '{{ .Values.tap.misc.pcapErrorTTL }}'