Skip to content

Commit

Permalink
helm: Fix templating securityContext and tolerations
Browse files Browse the repository at this point in the history
Fixing indents in Tetragon daemonset template.

Signed-off-by: Anna Kapuscinska <[email protected]>
  • Loading branch information
lambdanis committed Dec 4, 2023
1 parent 719ebfb commit be3bade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install/kubernetes/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:
serviceAccountName: {{ include "tetragon.serviceAccount" . }}
{{- with .Values.podSecurityContext }}
securityContext:
{{- toYaml . | nindent 6 }}
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
{{- if eq .Values.export.mode "stdout" }}
Expand All @@ -67,7 +67,7 @@ spec:
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 6 }}
{{- toYaml . | nindent 8 }}
{{- end }}
hostNetwork: {{ .Values.hostNetwork }}
dnsPolicy: {{ .Values.dnsPolicy }}
Expand Down

0 comments on commit be3bade

Please sign in to comment.