Files
deprecated-helm-charts/stable/sysdig/templates/configmap.yaml
T
Néstor Salceda 9bb750ccd2 [stable/sysdig] Hardcode new_k8s value to true (#13749)
If you change some agent settings in values.yaml of passing via the
command line, you can alter the value of new_k8s flag

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>
2019-05-14 06:41:14 -07:00

24 lines
556 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "sysdig.fullname" . }}
labels:
app: {{ template "sysdig.fullname" . }}
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
data:
dragent.yaml: |
new_k8s: true
{{- if .Values.secure.enabled }}
security:
enabled: true
commandlines_capture:
enabled: true
memdump:
enabled: true
{{- end }}
{{- if .Values.sysdig.settings }}
{{ toYaml .Values.sysdig.settings | indent 4 }}
{{- end }}