37 lines
789 B
YAML
37 lines
789 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: homeassistant
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: homeassistant
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: homeassistant
|
|
spec:
|
|
containers:
|
|
- name: homeassistant
|
|
image: homeassistant/home-assistant
|
|
ports:
|
|
- containerPort: 8123
|
|
env:
|
|
- name: TZ
|
|
value: Europe/Berlin
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /config
|
|
resources:
|
|
requests:
|
|
cpu: "100m"
|
|
memory: "200Mi"
|
|
limits:
|
|
cpu: "2"
|
|
memory: "1Gi"
|
|
volumes:
|
|
- name: config
|
|
persistentVolumeClaim:
|
|
claimName: config
|