Chart v8.23.0 (homarr-labs/charts) doesn't support probe customization. All attempts failed: - probes.liveness.spec: ignored - controller.probes: ignored - livenessProbe.enabled: ignored Solution: PostSync hook Job patches deployment after Helm sync. Probe config: - Liveness: 60s initial, 30s period, 5s timeout - Readiness: 45s initial, 15s period, 5s timeout App needs 30-45s for DB migrations, Redis, icon cache (27k+ icons).
23 lines
418 B
YAML
23 lines
418 B
YAML
# Homarr landing page - minimal config
|
|
# Probes patched via PostSync hook (chart doesn't support customization)
|
|
|
|
image:
|
|
repository: ghcr.io/homarr-labs/homarr
|
|
tag: "latest"
|
|
pullPolicy: Always
|
|
|
|
replicaCount: 1
|
|
|
|
tolerations:
|
|
- key: node-role.kubernetes.io/control-plane
|
|
operator: Exists
|
|
effect: NoSchedule
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|