Files
Néstor SalcedaandGitHub b5bd582e6a [stable/sysdig] Use app.kubernetes.io labels instead of custom ones (#22022)
* [stable/sysdig] Use app.kubernetes.io labels instead of custom ones

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>

* [stable/sysdig] Bump chart version

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>
2020-04-20 07:07:39 -07:00

27 lines
681 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "sysdig.fullname" . }}
labels:
{{ include "sysdig.labels" . | indent 4 }}
data:
dragent.yaml: |
new_k8s: true
{{- if or .Values.secure.enabled .Values.auditLog.enabled }}
security:
{{- if .Values.auditLog.enabled }}
k8s_audit_server_url: {{ .Values.auditLog.auditServerUrl }}
k8s_audit_server_port: {{ .Values.auditLog.auditServerPort }}
{{- end }}
{{- if .Values.secure.enabled }}
enabled: true
commandlines_capture:
enabled: true
memdump:
enabled: true
{{- end }}
{{- end }}
{{- if .Values.sysdig.settings }}
{{ toYaml .Values.sysdig.settings | indent 4 }}
{{- end }}