From 19d859c3a1ea1461635a410b19ce89fe59100974 Mon Sep 17 00:00:00 2001 From: Prince Rachit Sinha Date: Fri, 20 Aug 2021 05:17:08 +0000 Subject: [PATCH] Add liveness probe to ws-proxy deployment --- chart/templates/ws-proxy-deployment.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/chart/templates/ws-proxy-deployment.yaml b/chart/templates/ws-proxy-deployment.yaml index cf2e6296a6b77d..da5ae98250af83 100644 --- a/chart/templates/ws-proxy-deployment.yaml +++ b/chart/templates/ws-proxy-deployment.yaml @@ -67,6 +67,15 @@ spec: httpGet: path: / port: 60088 + livenessProbe: + initialDelaySeconds: 2 + periodSeconds: 5 + failureThreshold: 10 + successThreshold: 1 + timeoutSeconds: 2 + httpGet: + path: / + port: 60088 volumeMounts: - name: config mountPath: "/config"