Last active 1720696192

homeassistant.yaml Raw
1apiVersion: v1
2kind: Pod
3metadata:
4 annotations:
5 labels:
6 app: homeassistant
7 name: homeassistant
8spec:
9 containers:
10 - name: app
11 image: ghcr.io/home-assistant/home-assistant:stable
12 env:
13 - name: TZ
14 value: Etc/UTC
15 volumeMounts:
16 - mountPath: /config
17 name: hass-data
18 resources: {}
19 volumes:
20 - hostPath:
21 path: /path/to/homeassistant/data
22 type: Directory
23 name: hass-data
24 hostNetwork: true
25 hostname: homeassistant.home.arpa
26 restartPolicy: Never
27status: {}