11# statgpt
22
3- ![ Version: 1.0.4 ] ( https://img.shields.io/badge/Version-1.0.4 -informational?style=flat-square ) ![ AppVersion: 1.0.0] ( https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square )
3+ ![ Version: 1.0.5 ] ( https://img.shields.io/badge/Version-1.0.5 -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
@@ -145,8 +145,10 @@ helm install my-release . --namespace my-namespace --values values.yaml --set ad
145145| admin-backend.initContainers[ 0] .image | string | ` "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}" ` | |
146146| admin-backend.initContainers[ 0] .imagePullPolicy | string | ` "IfNotPresent" ` | |
147147| admin-backend.initContainers[ 0] .name | string | ` "alembic" ` | |
148+ | admin-backend.livenessProbe.enabled | bool | ` true ` | Enable livenessProbe |
148149| admin-backend.metrics.enabled | bool | ` false ` | Enable metrics collection |
149150| admin-backend.metrics.serviceMonitor.enabled | bool | ` false ` | Enable Prometheus ServiceMonitor for metrics |
151+ | admin-backend.readinessProbe.enabled | bool | ` true ` | Enable readinessProbe |
150152| admin-backend.resources.limits.cpu | string | ` "1000m" ` | Maximum CPU limit for the container |
151153| admin-backend.resources.limits.memory | string | ` "4Gi" ` | Maximum memory limit for the container |
152154| admin-backend.resources.requests.cpu | string | ` "100m" ` | Minimum CPU request for resource scheduling |
@@ -165,8 +167,14 @@ helm install my-release . --namespace my-namespace --values values.yaml --set ad
165167| admin-frontend.ingress.enabled | bool | ` false ` | Enable Ingress resource |
166168| admin-frontend.ingress.ingressClassName | string | ` "nginx" ` | Specify the Ingress class name |
167169| admin-frontend.ingress.path | string | ` "/" ` | Path for the Ingress resource |
170+ | admin-frontend.livenessProbe.enabled | bool | ` true ` | Enable livenessProbe |
171+ | admin-frontend.livenessProbe.httpGet | object | ` {"path":"/api/health"} ` | HTTP GET request configuration for liveness probe |
172+ | admin-frontend.livenessProbe.httpGet.path | string | ` "/api/health" ` | Health check endpoint path |
168173| admin-frontend.metrics.enabled | bool | ` false ` | Enable metrics collection |
169174| admin-frontend.metrics.serviceMonitor.enabled | bool | ` false ` | Enable Prometheus ServiceMonitor for metrics |
175+ | admin-frontend.readinessProbe.enabled | bool | ` true ` | Enable readinessProbe |
176+ | admin-frontend.readinessProbe.httpGet | object | ` {"path":"/api/health"} ` | HTTP GET request configuration for liveness probe |
177+ | admin-frontend.readinessProbe.httpGet.path | string | ` "/api/health" ` | Health check endpoint path |
170178| admin-frontend.resources.limits.cpu | string | ` "1000m" ` | Maximum CPU limit for the container |
171179| admin-frontend.resources.limits.memory | string | ` "2Gi" ` | Maximum memory limit for the container |
172180| admin-frontend.resources.requests.cpu | string | ` "500m" ` | Minimum CPU request for resource scheduling |
@@ -193,10 +201,12 @@ helm install my-release . --namespace my-namespace --values values.yaml --set ad
193201| chat-backend.image.registry | string | ` "docker.io" ` | Docker registry URL |
194202| chat-backend.image.repository | string | ` "epam/statgpt-chat-backend" ` | Image repository name |
195203| chat-backend.image.tag | string | ` "0.1.0" ` | Image tag or version |
204+ | chat-backend.livenessProbe.enabled | bool | ` true ` | Enable livenessProbe |
196205| chat-backend.metrics.enabled | bool | ` false ` | Enable metrics collection |
197206| chat-backend.metrics.serviceMonitor.enabled | bool | ` false ` | Enable Prometheus ServiceMonitor for metrics |
198207| chat-backend.podSecurityContext.enabled | bool | ` true ` | Enable security context for the pod |
199208| chat-backend.podSecurityContext.runAsUser | int | ` 5678 ` | User ID under which the pod runs |
209+ | chat-backend.readinessProbe.enabled | bool | ` true ` | Enable readinessProbe |
200210| chat-backend.resources.limits.cpu | string | ` "1000m" ` | Maximum CPU limit for the container |
201211| chat-backend.resources.limits.memory | string | ` "4Gi" ` | Maximum memory limit for the container |
202212| chat-backend.resources.requests.cpu | string | ` "100m" ` | Minimum CPU request for resource scheduling |
@@ -252,9 +262,18 @@ helm install my-release . --namespace my-namespace --values values.yaml --set ad
252262| portal-frontend.ingress.enabled | bool | ` false ` | Enable Ingress resource |
253263| portal-frontend.ingress.ingressClassName | string | ` "nginx" ` | Specify the Ingress class name |
254264| portal-frontend.ingress.path | string | ` "/" ` | Path for the Ingress resource |
265+ | portal-frontend.livenessProbe.enabled | bool | ` true ` | Enable livenessProbe |
266+ | portal-frontend.livenessProbe.httpGet | object | ` {"path":"/api/health"} ` | HTTP GET request configuration for liveness probe |
267+ | portal-frontend.livenessProbe.httpGet.path | string | ` "/api/health" ` | Health check endpoint path |
255268| portal-frontend.metrics.enabled | bool | ` false ` | Enable metrics collection |
256269| portal-frontend.metrics.serviceMonitor.enabled | bool | ` false ` | Enable Prometheus ServiceMonitor for metrics |
270+ | portal-frontend.readinessProbe.enabled | bool | ` true ` | Enable readinessProbe |
271+ | portal-frontend.readinessProbe.httpGet | object | ` {"path":"/api/health"} ` | HTTP GET request configuration for liveness probe |
272+ | portal-frontend.readinessProbe.httpGet.path | string | ` "/api/health" ` | Health check endpoint path |
257273| portal-frontend.resources.limits.cpu | string | ` "1000m" ` | Maximum CPU limit for the container |
258274| portal-frontend.resources.limits.memory | string | ` "4Gi" ` | Maximum memory limit for the container |
259275| portal-frontend.resources.requests.cpu | string | ` "100m" ` | Minimum CPU request for resource scheduling |
260276| portal-frontend.resources.requests.memory | string | ` "0.5Gi" ` | Minimum memory request for resource scheduling |
277+
278+ --------------------------------------------------
279+ Generated from chart metadata using [ helm-docs] ( https://github.com/norwoodj/helm-docs ) : ` docker run --rm --volume "$(pwd):/helm-docs" -u $(id -u) jnorwood/helm-docs:latest `
0 commit comments