mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
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>
24 lines
556 B
YAML
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 }}
|