Commit 6539ba0 1 parent 070f6ac commit 6539ba0 Copy full SHA for 6539ba0
File tree 3 files changed +19
-7
lines changed
3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ type: application
16
16
# This is the chart version. This version number should be incremented each time you make changes
17
17
# to the chart and its templates, including the app version.
18
18
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19
- version : 1.1.5
19
+ version : 1.1.6
20
20
21
21
# This is the version number of the application being deployed. This version number should be
22
22
# incremented each time you make changes to the application. Versions are not expected to
@@ -27,4 +27,4 @@ dependencies:
27
27
- name : tetragon
28
28
condition : streamsec.runtime_agent.enabled
29
29
version : 1.3.0
30
- repository : " https://helm.cilium.io"
30
+ repository : " https://helm.cilium.io"
Original file line number Diff line number Diff line change 26
26
tolerations :
27
27
{{- toYaml . | nindent 8 }}
28
28
{{- end }}
29
+ securityContext :
30
+ runAsUser : 0
31
+ fsGroup : 65534
32
+ runAsNonRoot : false
29
33
containers :
30
34
- name : runtime-agent
31
35
image : {{ template "streamsec.runtime-agent-image-path" $}}
@@ -53,17 +57,25 @@ spec:
53
57
name : {{ template "streamsec.apiTokenSecretName" $ }}
54
58
key : api-key
55
59
securityContext :
56
- privileged : true
60
+ privileged : false
61
+ allowPrivilegeEscalation : false
62
+ readOnlyRootFilesystem : true
63
+ capabilities :
64
+ drop :
65
+ - ALL
66
+ add :
67
+ - BPF
68
+ - NET_RAW
69
+ - SYS_RESOURCE
57
70
terminationMessagePolicy : FallbackToLogsOnError
58
71
volumeMounts :
59
72
- mountPath : /sys/kernel
60
73
name : sys-kernel
74
+ readOnly : true
61
75
- mountPath : {{ .Values.streamsec.runtime_agent.tetragonFilePath }}
62
76
name : export-logs
77
+ readOnly : true
63
78
dnsPolicy : {{ .Values.dnsPolicy }}
64
- hostNetwork : true
65
- hostPID : true
66
- hostIPC : true
67
79
{{- with .Values.streamsec.runtime_agent.priorityClassName }}
68
80
priorityClassName : " {{ . }}"
69
81
{{- end }}
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ streamsec:
204
204
updateStrategy : {}
205
205
image :
206
206
name : runtime-agent
207
- tag : 0 .0.6
207
+ tag : 1 .0.0
208
208
pullPolicy : IfNotPresent
209
209
210
210
env :
You can’t perform that action at this time.
0 commit comments