Skip to content

Commit b4df3ae

Browse files
committed
helm: Add tetragon.processAncestors.enabled value
Add support for process ancestors introduced in PR 2938 (e.g., see fd57a14). Signed-off-by: t0x01 <[email protected]>
1 parent 212566d commit b4df3ae

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

docs/content/en/docs/reference/helm-chart.md

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

install/kubernetes/tetragon/README.md

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

install/kubernetes/tetragon/templates/tetragon_configmap.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ data:
1414
debug: {{ .Values.tetragon.debug | quote }}
1515
enable-process-cred: {{ .Values.tetragon.enableProcessCred | quote }}
1616
enable-process-ns: {{ .Values.tetragon.enableProcessNs | quote }}
17+
enable-ancestors: {{ .Values.tetragon.processAncestors.enabled }}
1718
process-cache-size: {{ .Values.tetragon.processCacheSize | quote }}
1819
{{- if .Values.tetragon.exportFilename }}
1920
export-filename: {{ .Values.exportDirectory}}/{{ .Values.tetragon.exportFilename }}

install/kubernetes/tetragon/values.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,12 @@ tetragon:
148148
enableProcessCred: false
149149
# -- Enable Namespaces visibility in exec and kprobe events.
150150
enableProcessNs: false
151+
processAncestors:
152+
# -- Comma-separated list of process event types to enable ancestors for.
153+
# Supported event types are: base, kprobe, tracepoint, uprobe, lsm. Unknown event types will be ignored.
154+
# Type "base" is required by all other supported event types for correct reference counting.
155+
# Set it to "" to disable ancestors completely.
156+
enabled: ""
151157
# -- Set --btf option to explicitly specify an absolute path to a btf file. For advanced users only.
152158
btf: ""
153159
# -- Override the command. For advanced users only.

0 commit comments

Comments
 (0)