Skip to content

Commit 3e50fc6

Browse files
author
Michael Chmielewski
committed
Bump chart and app versions for new agent and Added an additional configuration option in values.yaml
1 parent 534cbe4 commit 3e50fc6

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed

Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: threatstack-agent
3-
version: 2.0.0
4-
appVersion: 2.3.0
3+
version: 2.1.0
4+
appVersion: 2.3.1
55
description: A Helm chart for the Threat Stack Cloud Security Agent
66
keywords:
77
- security

templates/configmap.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ 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: {{ toYaml .Values.daemonset.customTsAuditd | indent 4 }}
18+
{{- end }}

templates/daemonset.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff 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 }}

values.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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: ""

0 commit comments

Comments
 (0)