mirror of
https://github.com/morten-olsen/homelab-apps.git
synced 2026-02-08 01:36:28 +01:00
update
This commit is contained in:
72
charts/apps/home-assistant/templates/matter.yaml
Normal file
72
charts/apps/home-assistant/templates/matter.yaml
Normal file
@@ -0,0 +1,72 @@
|
||||
kind: PersistentVolumeClaim
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: "{{ .Release.Name }}-matter"
|
||||
spec:
|
||||
accessModes:
|
||||
- "ReadWriteOnce"
|
||||
resources:
|
||||
requests:
|
||||
storage: "1Gi"
|
||||
storageClassName: "{{ .Values.globals.environment }}"
|
||||
|
||||
---
|
||||
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: "{{ .Release.Name }}-matter"
|
||||
spec:
|
||||
strategy:
|
||||
type: Recreate
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: "{{ .Release.Name }}-matter"
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: "{{ .Release.Name }}-matter"
|
||||
spec:
|
||||
hostNetwork: true
|
||||
containers:
|
||||
- name: "{{ .Release.Name }}-matter"
|
||||
image: "{{ .Values.matter.image.repository }}:{{ .Values.matter.image.tag }}"
|
||||
imagePullPolicy: "{{ .Values.matter.image.pullPolicy }}"
|
||||
env:
|
||||
- name: TZ
|
||||
value: "{{ .Values.globals.timezone }}"
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 5580
|
||||
protocol: TCP
|
||||
livenessProbe:
|
||||
tcpSocket:
|
||||
port: http
|
||||
readinessProbe:
|
||||
tcpSocket:
|
||||
port: http
|
||||
volumeMounts:
|
||||
- mountPath: /data
|
||||
name: data
|
||||
volumes:
|
||||
- name: data
|
||||
persistentVolumeClaim:
|
||||
claimName: "{{ .Release.Name }}-matter"
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: "{{ .Release.Name }}-matter"
|
||||
labels:
|
||||
app: "{{ .Release.Name }}-matter"
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- port: 80
|
||||
targetPort: 5580
|
||||
protocol: TCP
|
||||
name: http
|
||||
selector:
|
||||
app: "{{ .Release.Name }}-matter"
|
||||
@@ -16,3 +16,8 @@ whisper:
|
||||
pullPolicy: IfNotPresent
|
||||
model: tiny-int8
|
||||
language: us
|
||||
matter:
|
||||
image:
|
||||
repository: ghcr.io/home-assistant-libs/python-matter-server
|
||||
tag: stable
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
@@ -62,11 +62,11 @@ releases:
|
||||
namespace: prod
|
||||
values:
|
||||
- values.yaml
|
||||
- name: linkwarden
|
||||
chart: charts/apps/linkwarden
|
||||
namespace: prod
|
||||
values:
|
||||
- values.yaml
|
||||
# - name: linkwarden
|
||||
# chart: charts/apps/linkwarden
|
||||
# namespace: prod
|
||||
# values:
|
||||
# - values.yaml
|
||||
- name: mealie
|
||||
chart: charts/apps/mealie
|
||||
namespace: prod
|
||||
@@ -147,10 +147,10 @@ releases:
|
||||
namespace: prod
|
||||
values:
|
||||
- values.yaml
|
||||
- name: mindsdb
|
||||
chart: charts/apps/mindsdb
|
||||
values:
|
||||
- values.yaml
|
||||
# - name: mindsdb
|
||||
# chart: charts/apps/mindsdb
|
||||
# values:
|
||||
# - values.yaml
|
||||
- name: pigeonpod
|
||||
chart: charts/apps/pigeon-pod
|
||||
namespace: prod
|
||||
|
||||
Reference in New Issue
Block a user