[frigate] update frigate version to 0.9.4 (#1306)

* [frigate] update frigate version to 0.9.4

Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com>

* [frigate] update ct-values to have defaults

Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com>

* [frigate] adjust formatting

Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com>
This commit is contained in:
Jonas Janz 2021-12-30 03:38:15 +01:00 committed by GitHub
parent e1b5116761
commit 8d94e9ef4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 42 additions and 5 deletions

View File

@ -1,8 +1,8 @@
apiVersion: v2
appVersion: v0.8.0
appVersion: v0.9.4
description: NVR With Realtime Object Detection for IP Cameras
name: frigate
version: 6.2.0
version: 7.0.0
kubeVersion: ">=1.16.0-0"
keywords:
- frigate
@ -18,6 +18,8 @@ sources:
maintainers:
- name: billimek
email: jeff@billimek.com
- name: PixelJonas
email: 5434875+PixelJonas@users.noreply.github.com
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com

View File

@ -1,6 +1,6 @@
# frigate
![Version: 6.2.0](https://img.shields.io/badge/Version-6.2.0-informational?style=flat-square) ![AppVersion: v0.8.0](https://img.shields.io/badge/AppVersion-v0.8.0-informational?style=flat-square)
![Version: 7.0.0](https://img.shields.io/badge/Version-7.0.0-informational?style=flat-square) ![AppVersion: v0.9.4](https://img.shields.io/badge/AppVersion-v0.9.4-informational?style=flat-square)
NVR With Realtime Object Detection for IP Cameras
@ -99,7 +99,7 @@ config: |
| env.TZ | string | `"UTC"` | Set the container timezone |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"blakeblackshear/frigate"` | image repository |
| image.tag | string | `"0.8.4-amd64"` | image tag |
| image.tag | string | `"0.9.4-amd64"` | image tag |
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
| persistence.cache | object | See values.yaml | Configure a temporary cache. See [docs](https://blakeblackshear.github.io/frigate/) for more details.. |
@ -114,6 +114,10 @@ All notable changes to this application Helm chart will be documented in this fi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### [7.0.0]
- Upgraded frigate version to 0.9.4. This introduces breaking changes regarding frigate configuration. Please check, that your configuration conforms the format described in the [official docs](https://docs.frigate.video/configuration/index/). When starting the container with a wrong configuration you will get a detailed overview which configuration options you need to adjust.
### [6.0.0]
#### Changed

View File

@ -9,6 +9,10 @@ All notable changes to this application Helm chart will be documented in this fi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### [7.0.0]
- Upgraded frigate version to 0.9.4. This introduces breaking changes regarding frigate configuration. Please check, that your configuration conforms the format described in the [official docs](https://docs.frigate.video/configuration/index/). When starting the container with a wrong configuration you will get a detailed overview which configuration options you need to adjust.
### [6.0.0]
#### Changed

View File

@ -3,3 +3,30 @@ persistence:
enabled: true
type: emptyDir
mountPath: /data
config: |
detectors:
cpu1:
type: cpu
num_threads: 1
mqtt:
host: 192.168.1.2
client_id: frigate
user: frigate
password: frigate
database:
path: /data/frigate.db
detect:
fps: 4
height: 360
width: 640
cameras:
camera_1:
ffmpeg:
inputs:
- path: rtsp://admin:admin@192.168.1.3:5554//h264Preview_01_sub
roles:
- detect
- rtmp
zones:
door:
coordinates: 481,42,596,48,565,267,469,228

View File

@ -9,7 +9,7 @@ image:
# -- image repository
repository: blakeblackshear/frigate
# -- image tag
tag: 0.8.4-amd64
tag: 0.9.4-amd64
# -- image pull policy
pullPolicy: IfNotPresent