Home Assistant

Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
Martyn 2023-11-14 15:43:40 +01:00
parent 0e9e681ed5
commit dc63649b79
4 changed files with 111 additions and 0 deletions

View File

@ -0,0 +1,67 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app.kubernetes.io/name: home-assistant
name: home-assistant
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: home-assistant
template:
metadata:
labels:
app.kubernetes.io/name: home-assistant
spec:
automountServiceAccountToken: true
containers:
- env:
- name: TZ
value: UTC
image: ghcr.io/home-assistant/home-assistant:2023.11.2
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
periodSeconds: 10
successThreshold: 1
tcpSocket:
port: 8123
timeoutSeconds: 1
name: homeassistant-home-assistant
ports:
- containerPort: 8123
name: http
protocol: TCP
readinessProbe:
failureThreshold: 3
periodSeconds: 10
successThreshold: 1
tcpSocket:
port: 8123
timeoutSeconds: 1
securityContext:
privileged: true
startupProbe:
failureThreshold: 30
periodSeconds: 5
successThreshold: 1
tcpSocket:
port: 8123
timeoutSeconds: 1
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /config
name: config
dnsPolicy: ClusterFirst
enableServiceLinks: true
restartPolicy: Always
schedulerName: default-scheduler
serviceAccount: default
serviceAccountName: default
terminationGracePeriodSeconds: 30
volumes:
- name: config
persistentVolumeClaim:
claimName: home-assistant-config

View File

@ -0,0 +1,13 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
labels:
app.kubernetes.io/name: home-assistant
name: home-assistant-config
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 50Gi
storageClassName: local-path

View File

@ -0,0 +1,14 @@
apiVersion: v1
kind: Service
metadata:
labels:
app.kubernetes.io/name: home-assistant
name: home-assistant
spec:
ports:
- name: http
port: 80
targetPort: 8123
selector:
app.kubernetes.io/name: home-assistant
type: LoadBalancer

View File

@ -0,0 +1,17 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: home-assistant
namespace: argocd
spec:
destination:
namespace: home-assistant
server: https://kubernetes.default.svc
project: apps
source:
path: apps-kustomized/home-assistant
repoURL: https://git.martyn.berlin/martyn/infra4talos
targetRevision: HEAD
syncPolicy:
automated:
selfHeal: true