From 76392111d48409c7ceff8b536fbb762dd0d3ca96 Mon Sep 17 00:00:00 2001 From: Anna Kapuscinska Date: Mon, 4 Dec 2023 15:28:54 +0000 Subject: [PATCH] helm: Fix templating securityContext and tolerations Fixing indents in Tetragon daemonset template. Signed-off-by: Anna Kapuscinska --- install/kubernetes/templates/daemonset.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/kubernetes/templates/daemonset.yaml b/install/kubernetes/templates/daemonset.yaml index 01ecb9abc51..352caa53d9c 100644 --- a/install/kubernetes/templates/daemonset.yaml +++ b/install/kubernetes/templates/daemonset.yaml @@ -42,7 +42,7 @@ spec: serviceAccountName: {{ .Release.Name }} {{- with .Values.podSecurityContext }} securityContext: - {{- toYaml . | nindent 6 }} + {{- toYaml . | nindent 8 }} {{- end }} containers: {{- if eq .Values.export.mode "stdout" }} @@ -61,7 +61,7 @@ spec: {{- end }} {{- with .Values.tolerations }} tolerations: - {{- toYaml . | nindent 6 }} + {{- toYaml . | nindent 8 }} {{- end }} hostNetwork: {{ .Values.hostNetwork }} dnsPolicy: {{ .Values.dnsPolicy }}