We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb0bd9d commit 89d6e2aCopy full SHA for 89d6e2a
2 files changed
hosting/k8s/helm/templates/webapp.yaml
@@ -207,6 +207,10 @@ spec:
207
- name: RUN_REPLICATION_LOG_LEVEL
208
value: {{ .Values.webapp.runReplication.logLevel | quote }}
209
{{- end }}
210
+ {{- if not .Values.telemetry.enabled }}
211
+ - name: TRIGGER_TELEMETRY_DISABLED
212
+ value: "1"
213
+ {{- end }}
214
{{- with .Values.webapp.extraEnv }}
215
{{- toYaml . | nindent 12 }}
216
hosting/k8s/helm/values.yaml
@@ -559,6 +559,10 @@ persistence:
559
storageClass: ""
560
retain: true # Prevents deletion on uninstall
561
562
+# Telemetry configuration
563
+telemetry:
564
+ enabled: true
565
+
566
# Extra Kubernetes manifests
567
# This allows you to add additional Kubernetes resources that will be deployed with the chart
568
extraManifests:
0 commit comments