From bbcf2d7599451ad164540aef6ab58f1c2fcbe100 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 13 Oct 2025 13:20:40 -0500 Subject: [PATCH] grafana: Increase readiness probe timeout Sometimes, Grafana gets pretty slow, especially when it's running on one of the Raspberry Pi nodes. When this happens, the health check may take longer than the default timeout of 1 second to respond. This then marks the pod as unhealthy, even though it's still working. --- grafana/grafana.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/grafana/grafana.yaml b/grafana/grafana.yaml index 7951e53..546bef3 100644 --- a/grafana/grafana.yaml +++ b/grafana/grafana.yaml @@ -60,6 +60,7 @@ spec: port: http path: /api/health periodSeconds: 60 + timeoutSeconds: 5 startupProbe: <<: *probe periodSeconds: 1