Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/statgpt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ maintainers:
name: statgpt
sources:
- https://github.com/epam/statgpt-helm
version: 1.1.0
version: 1.1.1
6 changes: 5 additions & 1 deletion charts/statgpt/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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 |
Expand Down
8 changes: 8 additions & 0 deletions charts/statgpt/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down