Skip to content

Commit a1336f5

Browse files
authored
Merge pull request #85 from nebula-it/master
2 parents 315ca9e + 94bc8d9 commit a1336f5

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

charts/frigate/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: "0.14.1"
33
description: NVR With Realtime Object Detection for IP Cameras
44
name: frigate
5-
version: 7.7.3
5+
version: 7.8.0
66
keywords:
77
- tensorflow
88
- coral

charts/frigate/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ spec:
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 }}

charts/frigate/values.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff 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
256256
securityContext: {}
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
266279
nodeSelector: {}
267280

0 commit comments

Comments
 (0)