From c065b5ee175812f041373c3d3c691226a7522544 Mon Sep 17 00:00:00 2001 From: Unchained Date: Fri, 6 Mar 2026 20:50:09 +0200 Subject: [PATCH] Fix probes: use /favicon.ico instead of static dir --- k8s/deployment-nodejs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/k8s/deployment-nodejs.yaml b/k8s/deployment-nodejs.yaml index b5ec13c..92bb8e8 100644 --- a/k8s/deployment-nodejs.yaml +++ b/k8s/deployment-nodejs.yaml @@ -157,19 +157,19 @@ spec: mountPath: /workspace startupProbe: httpGet: - path: /_next/static/ + path: /favicon.ico port: 3000 periodSeconds: 10 failureThreshold: 30 livenessProbe: httpGet: - path: /_next/static/ + path: /favicon.ico port: 3000 periodSeconds: 30 failureThreshold: 3 readinessProbe: httpGet: - path: /_next/static/ + path: /favicon.ico port: 3000 periodSeconds: 5 failureThreshold: 3