File tree Expand file tree Collapse file tree 4 files changed +29
-2
lines changed
Expand file tree Collapse file tree 4 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
22name : threatstack-agent
3- version : 2.0 .0
4- appVersion : 2.3.0
3+ version : 2.1 .0
4+ appVersion : 2.3.1
55description : A Helm chart for the Threat Stack Cloud Security Agent
66keywords :
77- security
Original file line number Diff line number Diff line change 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 : {{ toYaml .Values.daemonset.customTsAuditd | indent 4 }}
18+ {{- end }}
Original file line number Diff line number Diff line change @@ -127,6 +127,11 @@ spec:
127127 - name : custom-audit-rules
128128 mountPath : /opt/threatstack/etc/audit-custom.rules
129129 subPath : audit-custom.rules
130+ {{- end }}
131+ {{- if .Values.daemonset.customTsAuditd }}
132+ - name : custom-tsauditd-config
133+ mountPath : /opt/threatstack/etc/tsauditd-custom.cfg
134+ subPath : tsauditd-custom.cfg
130135{{- end }}
131136 volumes :
132137 - hostPath :
@@ -149,3 +154,11 @@ spec:
149154 - key : custom-audit-rules-content
150155 path : audit-custom.rules
151156{{- end }}
157+ {{- if .Values.daemonset.customTsAuditd }}
158+ - name : custom-tsauditd-config
159+ configMap :
160+ name : {{ include "threatstack-agent.name" . }}-config-args
161+ items :
162+ - key : custom-tsauditd-config
163+ path : tsauditd-custom.cfg
164+ {{- end }}
Original file line number Diff line number Diff line change @@ -212,3 +212,14 @@ daemonset:
212212 # the end
213213 #
214214 customAuditRules : " "
215+
216+ # Override this to provide custom auditd config
217+ # https://threatstack.zendesk.com/hc/en-us/articles/360030897272-FAQ-Workaround-for-the-Known-Linux-Limitation-with-auditd
218+ #
219+ # Example:
220+ # customTsAuditdConfig: |
221+ # {
222+ # ...
223+ # }
224+ #
225+ customTsAuditdConfig : " "
You can’t perform that action at this time.
0 commit comments