Skip to content

Commit 6577733

Browse files
chore: create patch 1.1.1 (#34)
1 parent 7a0081d commit 6577733

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

charts/statgpt/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ maintainers:
5454
name: statgpt
5555
sources:
5656
- https://github.com/epam/statgpt-helm
57-
version: 1.1.0
57+
version: 1.1.1

charts/statgpt/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
Umbrella 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 |

charts/statgpt/values.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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/

0 commit comments

Comments
 (0)