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 <anna@isovalent.com>
  • Loading branch information
lambdanis committed Dec 4, 2023
1 parent 6285eef commit 9e0917a
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 @@ -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" }}
Expand All @@ -61,7 +61,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 9e0917a

Please sign in to comment.