Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(base-cluster/tetragon): add tetragon #1056

Merged
merged 8 commits into from
Aug 23, 2024
Prev Previous commit
Next Next commit
feat(base-cluster/tetragon): don't set image if value empty
marvinWolff committed Aug 23, 2024
commit 93dc9f9dc08a53b1c893bfe23c818f8526d86bea
4 changes: 4 additions & 0 deletions charts/base-cluster/templates/tetragon/tetragon.yaml
Original file line number Diff line number Diff line change
@@ -18,10 +18,12 @@ spec:
namespace: monitoring
{{- end }}
values:
{{- if .Values.global.imageRegistry }}
export:
stdout:
image:
repository: {{ .Values.global.imageRegistry }}
marvinWolff marked this conversation as resolved.
Show resolved Hide resolved
{{- end }}
securityContext:
capabilities:
drop:
@@ -31,8 +33,10 @@ spec:
tetragonOperator:
enabled: false
tetragon:
{{- if .Values.global.imageRegistry }}
image:
repository: {{ .Values.global.imageRegistry }}
marvinWolff marked this conversation as resolved.
Show resolved Hide resolved
{{- end }}
enableProcessCred: true
enableProcessNs: true
{{- if .Values.monitoring.prometheus.enabled }}