diff options
| -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 |
