File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -54,4 +54,4 @@ maintainers:
5454name : statgpt
5555sources :
5656 - https://github.com/epam/statgpt-helm
57- version : 1.1.0
57+ version : 1.1.1
Original file line number Diff line number Diff line change 11# statgpt
22
3- ![ Version: 1.1.0 ] ( https://img.shields.io/badge/Version-1.1.0 -informational?style=flat-square ) ![ AppVersion: 1.0.0] ( https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square )
3+ ![ Version: 1.1.1 ] ( https://img.shields.io/badge/Version-1.1.1 -informational?style=flat-square ) ![ AppVersion: 1.0.0] ( https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square )
44
55Umbrella chart for StatGPT solution
66
@@ -150,9 +150,13 @@ helm install my-release . --namespace my-namespace --values values.yaml --set ad
150150| admin-backend.initContainers[ 0] .imagePullPolicy | string | ` "{{ .Values.image.pullPolicy }}" ` | |
151151| admin-backend.initContainers[ 0] .name | string | ` "alembic" ` | |
152152| admin-backend.livenessProbe.enabled | bool | ` true ` | Enable livenessProbe |
153+ | admin-backend.livenessProbe.failureThreshold | int | ` 10 ` | Number of consecutive failures before the pod is restarted |
154+ | admin-backend.livenessProbe.timeoutSeconds | int | ` 10 ` | Timeout in seconds for the liveness probe |
153155| admin-backend.metrics.enabled | bool | ` false ` | Enable metrics collection |
154156| admin-backend.metrics.serviceMonitor.enabled | bool | ` false ` | Enable Prometheus ServiceMonitor for metrics |
155157| admin-backend.readinessProbe.enabled | bool | ` true ` | Enable readinessProbe |
158+ | admin-backend.readinessProbe.failureThreshold | int | ` 10 ` | Number of consecutive failures before the pod is marked as not ready |
159+ | admin-backend.readinessProbe.timeoutSeconds | int | ` 10 ` | Timeout in seconds for the readiness probe |
156160| admin-backend.resources.limits.cpu | string | ` "1000m" ` | Maximum CPU limit for the container |
157161| admin-backend.resources.limits.memory | string | ` "6Gi" ` | Maximum memory limit for the container |
158162| admin-backend.resources.requests.cpu | string | ` "100m" ` | Minimum CPU request for resource scheduling |
Original file line number Diff line number Diff line change @@ -198,12 +198,20 @@ admin-backend:
198198 livenessProbe :
199199 # -- Enable livenessProbe
200200 enabled : true
201+ # -- Timeout in seconds for the liveness probe
202+ timeoutSeconds : 10
203+ # -- Number of consecutive failures before the pod is restarted
204+ failureThreshold : 10
201205
202206 # ## Readiness Probes configuration ###
203207 # ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
204208 readinessProbe :
205209 # -- Enable readinessProbe
206210 enabled : true
211+ # -- Timeout in seconds for the readiness probe
212+ timeoutSeconds : 10
213+ # -- Number of consecutive failures before the pod is marked as not ready
214+ failureThreshold : 10
207215
208216 # ## Resource Management ###
209217 # ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
You can’t perform that action at this time.
0 commit comments