Chart version 8.23.0 doesn't support probe customization via values. Using strategic merge patch instead. Probe configuration: - Liveness: 60s initial delay, 30s period, 5s timeout - Readiness: 45s initial delay, 15s period, 5s timeout App initialization timeline: 0-5s: DB migrations, Redis startup 6s: WebSocket server ready 27-30s: Icon cache populated (27k+ icons) 30s+: Analytics cron initialized, fully operational
31 lines
641 B
YAML
31 lines
641 B
YAML
# Homarr landing page - minimal working config
|
|
# App takes ~30 seconds to fully initialize (DB migrations, Redis, icon cache)
|
|
|
|
image:
|
|
repository: ghcr.io/homarr-labs/homarr
|
|
tag: "latest"
|
|
pullPolicy: Always
|
|
|
|
replicaCount: 1
|
|
|
|
# Disable default probes - they kill the container before it finishes startup
|
|
# Will add custom probes via Kustomize patch with proper timing
|
|
livenessProbe:
|
|
enabled: false
|
|
|
|
readinessProbe:
|
|
enabled: false
|
|
|
|
tolerations:
|
|
- key: node-role.kubernetes.io/control-plane
|
|
operator: Exists
|
|
effect: NoSchedule
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|