Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
68d0a701ef
commit
a6c9a181ff
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [frigate-5.0.2](https://github.com/truecharts/charts/compare/frigate-5.0.1...frigate-5.0.2) (2022-11-17)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix config.yml small formatting and typos ([#4472](https://github.com/truecharts/charts/issues/4472))
|
||||
|
||||
|
|
@ -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
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [frigate-5.0.3](https://github.com/truecharts/charts/compare/frigate-5.0.2...frigate-5.0.3) (2022-11-20)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix small issues in configmap and questions ([#4635](https://github.com/truecharts/charts/issues/4635))
|
||||
|
||||
|
|
@ -619,6 +619,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
|
||||
|
@ -710,8 +716,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:
|
Loading…
Reference in New Issue