From be2efdd8e88494f8e7b8e4e426b2c3bc007305b2 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 16 May 2026 15:36:47 +0300 Subject: Give player deployments longer startup window --- f3s/player/helm-chart/templates/deployment.yaml | 6 ++++++ f3s/xplayer/helm-chart/templates/deployment.yaml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/f3s/player/helm-chart/templates/deployment.yaml b/f3s/player/helm-chart/templates/deployment.yaml index 74d03bb..c1fd1f2 100644 --- a/f3s/player/helm-chart/templates/deployment.yaml +++ b/f3s/player/helm-chart/templates/deployment.yaml @@ -50,6 +50,12 @@ spec: port: http initialDelaySeconds: 5 periodSeconds: 10 + startupProbe: + httpGet: + path: /healthz + port: http + periodSeconds: 5 + failureThreshold: 60 readinessProbe: httpGet: path: /readyz diff --git a/f3s/xplayer/helm-chart/templates/deployment.yaml b/f3s/xplayer/helm-chart/templates/deployment.yaml index fb7dd28..e97826c 100644 --- a/f3s/xplayer/helm-chart/templates/deployment.yaml +++ b/f3s/xplayer/helm-chart/templates/deployment.yaml @@ -50,6 +50,12 @@ spec: port: http initialDelaySeconds: 5 periodSeconds: 10 + startupProbe: + httpGet: + path: /healthz + port: http + periodSeconds: 5 + failureThreshold: 60 readinessProbe: httpGet: path: /readyz -- cgit v1.2.3