Skip to content

Commit 46bc476

Browse files
author
Michael Chmielewski
committed
Fix value parameter name
1 parent c45e795 commit 46bc476

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

templates/configmap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ data:
1313
{{- if .Values.daemonset.customAuditRules }}
1414
custom-audit-rules-content: {{ toYaml .Values.daemonset.customAuditRules | indent 4 }}
1515
{{- end }}
16-
{{- if .Values.daemonset.customTsAuditd }}
17-
custom-tsauditd-config-content: {{ toYaml .Values.daemonset.customTsAuditd | indent 4 }}
16+
{{- if .Values.daemonset.customTsAuditdConfig }}
17+
custom-tsauditd-config-content: {{ toYaml .Values.daemonset.customTsAuditdConfig | indent 4 }}
1818
{{- end }}
1919
{{- if .Values.daemonset.customLuaFilter }}
2020
custom-luafilter-content: {{ toYaml .Values.daemonset.customLuaFilter | indent 4 }}

templates/daemonset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ spec:
128128
mountPath: /opt/threatstack/etc/audit-custom.rules
129129
subPath: audit-custom.rules
130130
{{- end }}
131-
{{- if .Values.daemonset.customTsAuditd }}
131+
{{- if .Values.daemonset.customTsAuditdConfig }}
132132
- name: custom-tsauditd-config
133133
mountPath: /opt/threatstack/etc/tsauditd-custom.cfg
134134
subPath: tsauditd-custom.cfg
@@ -159,7 +159,7 @@ spec:
159159
- key: custom-audit-rules-content
160160
path: audit-custom.rules
161161
{{- end }}
162-
{{- if .Values.daemonset.customTsAuditd }}
162+
{{- if .Values.daemonset.customTsAuditdConfig }}
163163
- name: custom-tsauditd-config
164164
configMap:
165165
name: {{ include "threatstack-agent.name" . }}-config-args

0 commit comments

Comments
 (0)