Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 123aec9

Browse files
committed
Add helm value to disable telemetry data collection
1 parent 1105ff0 commit 123aec9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

operator/templates/manager/manager.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ spec:
2828
imagePullPolicy: {{ .Values.image.pullPolicy }}
2929
name: manager
3030
env:
31+
- name: TELEMETRY_ENABLED
32+
value: {{ .Values.telemetryEnabled | quote }}
3133
# TODO: integrate with cert manager and auto gen a cert for minio
3234
{{- if .Values.minio.enabled }}
3335
- name: S3_USE_SSL

operator/values.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
44

5+
# telemetryEnabled -- The Operator sends anonymous telemetry data, to give the team an overview how much the secureCodeBox is used. Find out more at https://www.securecodebox.io/telemetry
6+
telemetryEnabled: true
7+
58
image:
69
registry: docker.io
710
repository: scbexperimental/operator
@@ -45,4 +48,4 @@ resources:
4548
memory: 30Mi
4649
requests:
4750
cpu: 100m
48-
memory: 20Mi
51+
memory: 20Mi

0 commit comments

Comments
 (0)