From 3808138c80a9b4ca3cd768021c6445b5c85176aa Mon Sep 17 00:00:00 2001 From: OMPRAKASH MISHRA Date: Thu, 17 Oct 2024 16:25:24 -0700 Subject: [PATCH] chore: readiness and liveness probes in frontend changed to reduce log noise in frontend --- .../frontend-site-registry/templates/deployment.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/charts/app/templates/frontend-site-registry/templates/deployment.yaml b/charts/app/templates/frontend-site-registry/templates/deployment.yaml index 6fce0172..3a2b7d47 100644 --- a/charts/app/templates/frontend-site-registry/templates/deployment.yaml +++ b/charts/app/templates/frontend-site-registry/templates/deployment.yaml @@ -42,10 +42,8 @@ spec: containerPort: 8080 protocol: TCP readinessProbe: - httpGet: - path: / + tcpSocket: port: 8080 - scheme: HTTP initialDelaySeconds: 5 periodSeconds: 2 timeoutSeconds: 2 @@ -55,10 +53,8 @@ spec: livenessProbe: successThreshold: 1 failureThreshold: 3 - httpGet: - path: / + tcpSocket: port: 8080 - scheme: HTTP initialDelaySeconds: 15 periodSeconds: 30 timeoutSeconds: 5