2026-07-22 10:53:16 -07:00
|
|
|
# Homarr landing page - minimal working config
|
|
|
|
|
# App takes ~30 seconds to fully initialize (DB migrations, Redis, icon cache)
|
2026-07-22 09:54:35 -07:00
|
|
|
|
2026-07-22 08:59:51 -07:00
|
|
|
image:
|
|
|
|
|
repository: ghcr.io/homarr-labs/homarr
|
2026-07-22 09:54:35 -07:00
|
|
|
tag: "latest"
|
2026-07-22 09:50:04 -07:00
|
|
|
pullPolicy: Always
|
2026-07-22 08:59:51 -07:00
|
|
|
|
|
|
|
|
replicaCount: 1
|
|
|
|
|
|
2026-07-22 10:53:16 -07:00
|
|
|
# Override default probes - chart defaults are too aggressive for startup time
|
|
|
|
|
probes:
|
|
|
|
|
liveness:
|
|
|
|
|
enabled: true
|
|
|
|
|
custom: true
|
|
|
|
|
spec:
|
|
|
|
|
httpGet:
|
|
|
|
|
path: /api/health/live
|
|
|
|
|
port: 7575
|
|
|
|
|
initialDelaySeconds: 60 # App needs time for migrations + icon fetch
|
|
|
|
|
periodSeconds: 30
|
|
|
|
|
timeoutSeconds: 5
|
|
|
|
|
failureThreshold: 3
|
|
|
|
|
readiness:
|
|
|
|
|
enabled: true
|
|
|
|
|
custom: true
|
|
|
|
|
spec:
|
|
|
|
|
httpGet:
|
|
|
|
|
path: /api/health/ready
|
|
|
|
|
port: 7575
|
|
|
|
|
initialDelaySeconds: 45 # Wait for WebSocket + analytics cron
|
|
|
|
|
periodSeconds: 15
|
|
|
|
|
timeoutSeconds: 5
|
|
|
|
|
failureThreshold: 3
|
|
|
|
|
|
2026-07-22 08:59:51 -07:00
|
|
|
tolerations:
|
|
|
|
|
- key: node-role.kubernetes.io/control-plane
|
|
|
|
|
operator: Exists
|
|
|
|
|
effect: NoSchedule
|
|
|
|
|
|
|
|
|
|
resources:
|
|
|
|
|
requests:
|
|
|
|
|
cpu: 100m
|
|
|
|
|
memory: 256Mi
|
|
|
|
|
limits:
|
|
|
|
|
cpu: 500m
|
|
|
|
|
memory: 512Mi
|