Feat/frigate (#33)
* feat:added frigate chart * modified README.md * modified chart.yaml * modified values.yaml * changed storageclass * changed values.yaml * changed values.yaml * changed values.yaml * changed values.yaml * Storageclass * fix: removed configmap and added secret * fix: changed chart version * fix: changed secret --------- Signed-off-by: shivani446 <123355816+shivani446@users.noreply.github.com>main
parent
990ff96e00
commit
e30c8178f8
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: "0.12.0"
|
appVersion: "0.12.0"
|
||||||
description: NVR With Realtime Object Detection for IP Cameras
|
description: NVR With Realtime Object Detection for IP Cameras
|
||||||
name: frigate
|
name: frigate
|
||||||
version: 1.0.0
|
version: 1.0.1
|
||||||
keywords:
|
keywords:
|
||||||
- tensorflow
|
- tensorflow
|
||||||
- coral
|
- coral
|
||||||
|
|
|
||||||
|
|
@ -120,8 +120,8 @@ spec:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
volumes:
|
volumes:
|
||||||
- name: config
|
- name: config
|
||||||
configMap:
|
secret:
|
||||||
name: {{ template "frigate.fullname" . }}
|
secretName: {{ template "frigate.fullname" . }}
|
||||||
{{- if .Values.coral.enabled }}
|
{{- if .Values.coral.enabled }}
|
||||||
- name: coral-dev
|
- name: coral-dev
|
||||||
hostPath:
|
hostPath:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: {{ template "frigate.fullname" . }}
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: {{ include "frigate.name" . }}
|
||||||
|
helm.sh/chart: {{ include "frigate.chart" . }}
|
||||||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
|
stringData:
|
||||||
|
config.yml: |
|
||||||
|
{{ .Values.config | indent 4 }}
|
||||||
Loading…
Reference in New Issue