Skip to content

Commit

Permalink
fix(falco): fix templating for init containers in pod-template.tpl
Browse files Browse the repository at this point in the history
Signed-off-by: Aldo Lacuku <[email protected]>
Co-authored-by: Ahmed Amin <[email protected]>
  • Loading branch information
2 people authored and poiana committed Jul 20, 2022
1 parent baaa29f commit 8898864
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions falco/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
This file documents all notable changes to Falco Helm Chart. The release
numbering uses [semantic versioning](http://semver.org).

## v2.0.4

* Fix templating for init containers in pod-template.tpl

## v2.0.3

* Add ability to specify extra environment variables to driver loader initContainer
Expand Down
2 changes: 1 addition & 1 deletion falco/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: falco
version: 2.0.3
version: 2.0.4
appVersion: 0.32.1
description: Falco
keywords:
Expand Down
2 changes: 1 addition & 1 deletion falco/templates/pod-template.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ spec:
{{- end }}
initContainers:
{{- with .Values.extra.initContainers }}
{{- toYaml .Values.extra.initContainers | nindent 8 }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- if .Values.driver.enabled }}
{{- if and .Values.driver.loader.enabled .Values.driver.loader.initContainer.enabled }}
Expand Down

0 comments on commit 8898864

Please sign in to comment.