Compare commits
7 Commits
fix/homeas
...
9eb425f7f5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9eb425f7f5 | ||
|
|
6970313822 | ||
|
|
9a230d03c9 | ||
|
|
71f724420e | ||
|
|
6967925c4f | ||
|
|
2f1ae311f7 | ||
| 7ca919b7c7 |
@@ -29,6 +29,12 @@ data:
|
|||||||
# Loads default set of integrations
|
# Loads default set of integrations
|
||||||
default_config:
|
default_config:
|
||||||
|
|
||||||
|
# Load UI-edited scripts from /config/scripts.yaml (YAML mode). Without this
|
||||||
|
# line, default_config runs the script integration in storage mode and the
|
||||||
|
# Scripts editor has no file to write back to, so saving scripts from the UI
|
||||||
|
# appears to fail / scripts never load.
|
||||||
|
script: !include scripts.yaml
|
||||||
|
|
||||||
http:
|
http:
|
||||||
use_x_forwarded_for: true
|
use_x_forwarded_for: true
|
||||||
trusted_proxies:
|
trusted_proxies:
|
||||||
@@ -52,15 +58,17 @@ spec:
|
|||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
app: home-assistant
|
app: home-assistant
|
||||||
|
annotations:
|
||||||
|
kubectl.kubernetes.io/restartedAt: "2026-07-28T00:00:00Z"
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: home-assistant
|
- name: home-assistant
|
||||||
image: ghcr.io/home-assistant/home-assistant:2026.7.4
|
image: ghcr.io/home-assistant/home-assistant:2026.7.4
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
memory: "512Mi"
|
memory: "256Mi"
|
||||||
limits:
|
limits:
|
||||||
memory: "1Gi"
|
memory: "512Mi"
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8123
|
- containerPort: 8123
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
@@ -101,6 +109,16 @@ spec:
|
|||||||
- name: configuration
|
- name: configuration
|
||||||
mountPath: /config-cm
|
mountPath: /config-cm
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
affinity:
|
||||||
|
nodeAffinity:
|
||||||
|
preferredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
- weight: 100
|
||||||
|
preference:
|
||||||
|
matchExpressions:
|
||||||
|
- key: kubernetes.io/hostname
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- raspberrypi
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
volumes:
|
volumes:
|
||||||
- name: config
|
- name: config
|
||||||
|
|||||||
Reference in New Issue
Block a user