diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-16 15:36:47 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-16 15:36:47 +0300 |
| commit | be2efdd8e88494f8e7b8e4e426b2c3bc007305b2 (patch) | |
| tree | 8907de9a50414abb88db35f1c33d3538a0132dcd /f3s | |
| parent | dcda17ded1d4580077f04ffb61767d3671c71b30 (diff) | |
Give player deployments longer startup window
Diffstat (limited to 'f3s')
| -rw-r--r-- | f3s/player/helm-chart/templates/deployment.yaml | 6 | ||||
| -rw-r--r-- | f3s/xplayer/helm-chart/templates/deployment.yaml | 6 |
2 files changed, 12 insertions, 0 deletions
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 |
