fix(frigate): fix small issues in configmap and questions (#4635)
* typos in configmap and fix effect default Signed-off-by: mgale456 <55673155+mgale456@users.noreply.github.com> * add max_ratio question Signed-off-by: mgale456 <55673155+mgale456@users.noreply.github.com> * fix name for improve_contrast variable Signed-off-by: mgale456 <55673155+mgale456@users.noreply.github.com> * bump version Signed-off-by: mgale456 <55673155+mgale456@users.noreply.github.com> Signed-off-by: mgale456 <55673155+mgale456@users.noreply.github.com>
This commit is contained in:
@@ -24,7 +24,7 @@ sources:
|
||||
- https://github.com/blakeblackshear/frigate
|
||||
- https://hub.docker.com/r/blakeblackshear/frigate
|
||||
type: application
|
||||
version: 5.0.2
|
||||
version: 5.0.3
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- nvr
|
||||
|
||||
@@ -545,6 +545,12 @@ questions:
|
||||
schema:
|
||||
type: int
|
||||
"null": true
|
||||
- variable: max_ratio
|
||||
label: Max Ratio
|
||||
description: Maximum width/height of the bounding box for the detected object
|
||||
schema:
|
||||
type: int
|
||||
"null": true
|
||||
- variable: min_score
|
||||
label: Min Score
|
||||
description: Minimum score for the object to initiate tracking
|
||||
@@ -636,8 +642,8 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: mask
|
||||
label: Mask
|
||||
- variable: improve_contrast
|
||||
label: Improve Contrast
|
||||
description: Improve contrast. Enables dynamic contrast improvement. This should help improve night detections at the cost of making motion detection more sensitive for daytime.
|
||||
schema:
|
||||
type: boolean
|
||||
|
||||
@@ -50,7 +50,7 @@ data:
|
||||
path: {{ . }}
|
||||
{{- end }}
|
||||
{{- with .Values.frigate.model.labelmap_path }}
|
||||
path: {{ . }}
|
||||
labelmap_path: {{ . }}
|
||||
{{- end }}
|
||||
width: {{ .Values.frigate.model.width | default 320 }}
|
||||
height: {{ .Values.frigate.model.height | default 320 }}
|
||||
@@ -99,7 +99,7 @@ data:
|
||||
detect:
|
||||
enabled: {{ ternary "True" "False" .Values.frigate.detect.enabled }}
|
||||
width: {{ .Values.frigate.detect.width | default 1280 }}
|
||||
width: {{ .Values.frigate.detect.height | default 720 }}
|
||||
height: {{ .Values.frigate.detect.height | default 720 }}
|
||||
fps: {{ .Values.frigate.detect.fps | default 5 }}
|
||||
max_disappeared: {{ .Values.frigate.detect.max_disappeared | default 25 }}
|
||||
stationary:
|
||||
@@ -248,7 +248,7 @@ data:
|
||||
{{- if .Values.frigate.live.render_config }}
|
||||
live:
|
||||
height: {{ .Values.frigate.live.height | default 720 }}
|
||||
quality: {{ .Values.frigate.live.height | default 8 }}
|
||||
quality: {{ .Values.frigate.live.quality | default 8 }}
|
||||
{{- end }}
|
||||
|
||||
{{- if .Values.frigate.timestamp_style.render_config }}
|
||||
@@ -260,7 +260,9 @@ data:
|
||||
green: {{ .Values.frigate.timestamp_style.color.green | default 255 }}
|
||||
blue: {{ .Values.frigate.timestamp_style.color.blue | default 255 }}
|
||||
thickness: {{ .Values.frigate.timestamp_style.thickness | default 2 }}
|
||||
effect: {{ .Values.frigate.timestamp_style.effect | default "None" }}
|
||||
{{- if ne .Values.frigate.timestamp_style.effect "None" }}
|
||||
effect: {{ .Values.frigate.timestamp_style.effect }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
cameras:
|
||||
|
||||
Reference in New Issue
Block a user