File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed
Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22appVersion : " 0.14.1"
33description : NVR With Realtime Object Detection for IP Cameras
44name : frigate
5- version : 7.7.3
5+ version : 7.8.0
66keywords :
77 - tensorflow
88 - coral
Original file line number Diff line number Diff line change 3333 imagePullSecrets :
3434 {{- toYaml . | nindent 8 }}
3535 {{- end }}
36+ {{- if .Values.podSecurityContext }}
37+ securityContext :
38+ {{- toYaml .Values.podSecurityContext | nindent 8 }}
39+ {{- end }}
3640 {{- if or .Values.extraInitContainers (and .Values.persistence.config.enabled .Values.persistence.config.ephemeralWritableConfigYaml) }}
3741 initContainers :
3842 {{- with .Values.extraInitContainers }}
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ resources: {}
252252 # memory: 128Mi
253253 # gpu.intel.com/i915: 1
254254
255- # -- Set Security Context
255+ # -- Set Frigate Container Security Context
256256securityContext : {}
257257 # capabilities:
258258 # drop:
@@ -262,6 +262,19 @@ securityContext: {}
262262 # runAsUser: 1000
263263 # privileged: true
264264
265+ # -- Set Pod level Security Context
266+ # -- the container level securiy context defined above
267+ # -- will override it for frigate container
268+ podSecurityContext : {}
269+ # capabilities:
270+ # drop:
271+ # - ALL
272+ # readOnlyRootFilesystem: true
273+ # runAsNonRoot: true
274+ # runAsUser: 1000
275+ # fsGroup: 1000
276+ # privileged: true
277+
265278# -- Node Selector configuration
266279nodeSelector : {}
267280
You can’t perform that action at this time.
0 commit comments