Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-10-15 12:00:36 +00:00
parent da99dba2a1
commit b6d216a290
12 changed files with 2576 additions and 0 deletions

View File

@ -0,0 +1,59 @@
**Important:**
*for the complete changelog, please refer to the website*
## [frigate-10.1.0](https://github.com/truecharts/charts/compare/frigate-10.0.1...frigate-10.1.0) (2023-10-15)
### Chore
- run precocmit ([#13387](https://github.com/truecharts/charts/issues/13387))
### Feat
- Add option for TensorRT container ([#13626](https://github.com/truecharts/charts/issues/13626))
## [frigate-10.0.1](https://github.com/truecharts/charts/compare/frigate-10.0.0...frigate-10.0.1) (2023-10-07)
### Chore
- update helm general non-major ([#13386](https://github.com/truecharts/charts/issues/13386))
## [frigate-10.0.0](https://github.com/truecharts/charts/compare/frigate-9.0.7...frigate-10.0.0) (2023-07-31)
## [frigate-9.0.7](https://github.com/truecharts/charts/compare/frigate-9.0.6...frigate-9.0.7) (2023-07-29)
### Chore
- update helm general non-major ([#10955](https://github.com/truecharts/charts/issues/10955))
## [frigate-9.0.6](https://github.com/truecharts/charts/compare/frigate-9.0.5...frigate-9.0.6) (2023-07-01)
### Chore
- update helm general non-major ([#10069](https://github.com/truecharts/charts/issues/10069))
## [frigate-9.0.5](https://github.com/truecharts/charts/compare/frigate-9.0.4...frigate-9.0.5) (2023-06-25)
### Feat
- Move to stable ([#9876](https://github.com/truecharts/charts/issues/9876))

View File

@ -0,0 +1,30 @@
apiVersion: v2
appVersion: "0.12.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.9
deprecated: false
description: NVR With Realtime Object Detection for IP Cameras
home: https://truecharts.org/charts/stable/frigate
icon: https://truecharts.org/img/hotlink-ok/chart-icons/frigate.png
keywords:
- encode
- nvr
- media
- frigate
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: frigate
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/frigate
- https://github.com/blakeblackshear/frigate
type: application
version: 10.1.0
annotations:
truecharts.org/catagories: |
- nvr
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,13 @@
## [frigate-10.1.0](https://github.com/truecharts/charts/compare/frigate-10.0.1...frigate-10.1.0) (2023-10-15)
### Chore
- run precocmit ([#13387](https://github.com/truecharts/charts/issues/13387))
### Feat
- Add option for TensorRT container ([#13626](https://github.com/truecharts/charts/issues/13626))

View File

@ -0,0 +1,8 @@
NVR With Realtime Object Detection for IP Cameras
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/frigate](https://truecharts.org/charts/stable/frigate)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,101 @@
image:
repository: tccr.io/truecharts/frigate
pullPolicy: IfNotPresent
tag: v0.12.1@sha256:71c83d1c5454bfee190b450ab89b2889352688b8cf3f832782a47ed82e2c604d
tensorrtImage:
repository: tccr.io/truecharts/frigate-tensorrt
pullPolicy: IfNotPresent
tag: v0.12.1@sha256:6860328187a2a52b6273d0151a15be10bc69a05e98cf5186d718b5e87a8a2b04
# When this is defined, the contents will be mounted
# as configmap into the container at /config/config.yml.
frigateConfig:
{}
# -- https://docs.frigate.video/configuration/
# mqtt:
# enabled: False
# cameras:
# dummy:
# enabled: False
# ffmpeg:
# inputs:
# - path: rtsp://127.0.0.1:554/rtsp
# roles:
# - detect
workload:
main:
podSpec:
initContainers:
init-config:
enabled: "{{ not .Values.frigateConfig }}"
type: init
imageSelector: alpineImage
command:
- /bin/sh
- -c
- |
mkdir -p /config
if [ ! -f /config/config.yml ]; then
echo "Config file not found, copying dummy..."
cp /dummy-config/config.yml.dummy /config/config.yml
echo "Config file copied, you can now edit it at /config/config.yml"
fi
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 10500
protocol: http
targetPort: 5000
rtmp:
enabled: true
ports:
rtmp:
enabled: true
port: 1935
targetPort: 1935
rtsp:
enabled: true
ports:
rtsp:
enabled: true
port: 8554
targetPort: 8554
webrtc:
enabled: true
ports:
webrtc-tcp:
enabled: true
port: 8555
targetPort: 8555
webrtc-udp:
enabled: true
port: 8555
protocol: udp
targetPort: 8555
persistence:
media:
enabled: true
mountPath: /media
config:
# Only enable when not using frigateConfig
enabled: false
mountPath: /config
targetSelector:
main:
main: {}
init-config: {}
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1,42 @@
{{/* Define the configmap */}}
{{- define "frigate.configmap" -}}
enabled: true
data:
{{- if .Values.frigateConfig }}
config.yml: |
{{- .Values.frigateConfig | toYaml | nindent 4 }}
{{- else }}
config.yml.dummy: |
mqtt:
enabled: false
cameras:
dummy:
enabled: false
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:554/rtsp
roles:
- detect
{{- end }}
{{- end -}}
{{- define "frigate.configVolume" -}}
enabled: true
type: configmap
objectName: frigate-config
targetSelector:
main:
main: {}
init-config: {}
{{- if .Values.frigateConfig }}
mountPath: /config
items:
- key: config.yml
path: config.yml
{{- else }}
mountPath: /dummy-config
items:
- key: config.yml.dummy
path: config.yml.dummy
{{- end -}}
{{- end -}}

View File

@ -0,0 +1,20 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render configmap for frigate */}}
{{- $config := include "frigate.configmap" . | fromYaml -}}
{{- if $config -}}
{{- $_ := set .Values.configmap "frigate-config" $config -}}
{{- end -}}
{{- if not .Values.frigateConfig -}}
{{- $_ := set .Values.persistence.config "enabled" true -}}
{{- end -}}
{{- $vol := include "frigate.configVolume" . | fromYaml -}}
{{- if $vol -}}
{{- $_ := set .Values.persistence "frigate-config" $vol -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File