From 89d6e2a5b984a9b45df473bea94e52309aba281d Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Wed, 25 Jun 2025 10:01:49 +0100 Subject: [PATCH] telemetry config --- hosting/k8s/helm/templates/webapp.yaml | 4 ++++ hosting/k8s/helm/values.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/hosting/k8s/helm/templates/webapp.yaml b/hosting/k8s/helm/templates/webapp.yaml index 3987de739..44dc64c17 100644 --- a/hosting/k8s/helm/templates/webapp.yaml +++ b/hosting/k8s/helm/templates/webapp.yaml @@ -207,6 +207,10 @@ spec: - name: RUN_REPLICATION_LOG_LEVEL value: {{ .Values.webapp.runReplication.logLevel | quote }} {{- end }} + {{- if not .Values.telemetry.enabled }} + - name: TRIGGER_TELEMETRY_DISABLED + value: "1" + {{- end }} {{- with .Values.webapp.extraEnv }} {{- toYaml . | nindent 12 }} {{- end }} diff --git a/hosting/k8s/helm/values.yaml b/hosting/k8s/helm/values.yaml index ba872bd32..0b2268380 100644 --- a/hosting/k8s/helm/values.yaml +++ b/hosting/k8s/helm/values.yaml @@ -559,6 +559,10 @@ persistence: storageClass: "" retain: true # Prevents deletion on uninstall +# Telemetry configuration +telemetry: + enabled: true + # Extra Kubernetes manifests # This allows you to add additional Kubernetes resources that will be deployed with the chart extraManifests: