diff --git a/charts/statgpt/Chart.yaml b/charts/statgpt/Chart.yaml index 0faf3a8..8944b3a 100644 --- a/charts/statgpt/Chart.yaml +++ b/charts/statgpt/Chart.yaml @@ -54,4 +54,4 @@ maintainers: name: statgpt sources: - https://github.com/epam/statgpt-helm -version: 1.1.0 +version: 1.1.1 diff --git a/charts/statgpt/README.md b/charts/statgpt/README.md index f6b61b6..137964c 100644 --- a/charts/statgpt/README.md +++ b/charts/statgpt/README.md @@ -1,6 +1,6 @@ # statgpt -![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) +![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) Umbrella chart for StatGPT solution @@ -150,9 +150,13 @@ helm install my-release . --namespace my-namespace --values values.yaml --set ad | admin-backend.initContainers[0].imagePullPolicy | string | `"{{ .Values.image.pullPolicy }}"` | | | admin-backend.initContainers[0].name | string | `"alembic"` | | | admin-backend.livenessProbe.enabled | bool | `true` | Enable livenessProbe | +| admin-backend.livenessProbe.failureThreshold | int | `10` | Number of consecutive failures before the pod is restarted | +| admin-backend.livenessProbe.timeoutSeconds | int | `10` | Timeout in seconds for the liveness probe | | admin-backend.metrics.enabled | bool | `false` | Enable metrics collection | | admin-backend.metrics.serviceMonitor.enabled | bool | `false` | Enable Prometheus ServiceMonitor for metrics | | admin-backend.readinessProbe.enabled | bool | `true` | Enable readinessProbe | +| admin-backend.readinessProbe.failureThreshold | int | `10` | Number of consecutive failures before the pod is marked as not ready | +| admin-backend.readinessProbe.timeoutSeconds | int | `10` | Timeout in seconds for the readiness probe | | admin-backend.resources.limits.cpu | string | `"1000m"` | Maximum CPU limit for the container | | admin-backend.resources.limits.memory | string | `"6Gi"` | Maximum memory limit for the container | | admin-backend.resources.requests.cpu | string | `"100m"` | Minimum CPU request for resource scheduling | diff --git a/charts/statgpt/values.yaml b/charts/statgpt/values.yaml index 57ba64a..8ffca5b 100644 --- a/charts/statgpt/values.yaml +++ b/charts/statgpt/values.yaml @@ -198,12 +198,20 @@ admin-backend: livenessProbe: # -- Enable livenessProbe enabled: true + # -- Timeout in seconds for the liveness probe + timeoutSeconds: 10 + # -- Number of consecutive failures before the pod is restarted + failureThreshold: 10 ### Readiness Probes configuration ### # ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes readinessProbe: # -- Enable readinessProbe enabled: true + # -- Timeout in seconds for the readiness probe + timeoutSeconds: 10 + # -- Number of consecutive failures before the pod is marked as not ready + failureThreshold: 10 ### Resource Management ### # ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/