From a6d5338a85160a479da5ad6079f6142bb6990d73 Mon Sep 17 00:00:00 2001 From: John Stewart <32647598+jstewart612@users.noreply.github.com> Date: Wed, 7 Dec 2022 19:15:56 -0500 Subject: [PATCH] set startupProbe by default of streaming to same pattern as web so we can define common failureThreshold and periodSeconds --- values.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/values.yaml b/values.yaml index 21e3b42..7e77658 100644 --- a/values.yaml +++ b/values.yaml @@ -171,13 +171,18 @@ mastodon: # memory: 128Mi # -- (Streaming Deployment) liveness and readiness probes livenessProbe: - httpGet: - path: /api/v1/streaming/health + tcpSocket: port: streaming readinessProbe: httpGet: path: /api/v1/streaming/health port: streaming + startupProbe: + httpGet: + path: /api/v1/streaming/health + port: streaming + failureThreshold: 30 + periodSeconds: 5 web: port: 3000 # -- Number of Web Pods running