@@ -84,6 +84,9 @@ Below is a summary table of configurable values from values.yaml.
8484| fileServer.deployment.volumeMounts | list | [ ] | Additional volume mounts. |
8585| fileServer.deployment.extraContainers | list | [ ] | Extra sidecars for file server only. |
8686| fileServer.deployment.initContainers | list | [ ] | Init containers for file server. |
87+ | fileServer.deployment.livenessProbe | object | httpGet on /file/uptime-check:5000 | Liveness probe configuration for file server container. |
88+ | fileServer.deployment.startupProbe | object | httpGet on /file/uptime-check:5000 | Startup probe configuration for file server container. |
89+ | fileServer.deployment.readinessProbe | object | httpGet on /file/uptime-check:5000 | Readiness probe configuration for file server container. |
8790| fileServer.pvc.name | string | nx-cloud-file-server | PVC name for file server storage. |
8891| fileServer.pvc.annotations | object | {} | PVC annotations. |
8992| fileServer.pvc.labels | object | {} | PVC labels. |
@@ -157,11 +160,23 @@ Below is a summary table of configurable values from values.yaml.
157160| frontend.deployment.volumeMounts | list | [ ] | Additional volume mounts. |
158161| frontend.deployment.extraContainers | list | [ ] | Extra sidecars for frontend only. |
159162| frontend.deployment.initContainers | list | [ ] | Init containers for frontend. |
163+ | frontend.deployment.startupProbe | object | httpGet on /healthz:4202 | Startup probe configuration for frontend container. |
164+ | frontend.deployment.livenessProbe | object | httpGet on /healthz:4202 | Liveness probe configuration for frontend container. |
165+ | frontend.deployment.readinessProbe | object | httpGet on /readyz:4202 | Readiness probe configuration for frontend container. |
160166| frontend.serviceAccount.create | bool | true | Whether to create a ServiceAccount for frontend. |
161167| frontend.serviceAccount.name | string | nx-cloud-frontend | ServiceAccount name for frontend. |
162168| frontend.serviceAccount.annotations | object | {} | ServiceAccount annotations for frontend. |
163169| frontend.serviceAccount.labels | object | {} | ServiceAccount labels for frontend. |
164170| frontend.serviceAccount.automount | bool | false | Automount service account token for frontend pods. |
171+ | frontend.hpa.enabled | bool | false | Enable Horizontal Pod Autoscaler for frontend. |
172+ | frontend.hpa.annotations | object | {} | HPA annotations for frontend. |
173+ | frontend.hpa.labels | object | {} | HPA labels for frontend. |
174+ | frontend.hpa.minReplicas | int | 1 | Minimum number of frontend replicas for HPA. |
175+ | frontend.hpa.maxReplicas | int | 10 | Maximum number of frontend replicas for HPA. |
176+ | frontend.hpa.targetCPUUtilizationPercentage | int | 80 | Target CPU utilization percentage for scaling. |
177+ | frontend.hpa.targetMemoryUtilizationPercentage | string | "" | Target memory utilization percentage (empty to disable). |
178+ | frontend.hpa.behavior | object | {} | HPA scaling behavior configuration (scaleUp/scaleDown policies). |
179+ | frontend.hpa.customMetrics | list | [ ] | Custom metrics for HPA scaling decisions. |
165180| api.verboseLogging | bool | false | Enable verbose logging for API. |
166181| api.logLevel | string | "INFO" | Log level for API. |
167182| api.valkey.clientProvider | string | "redisson" | Valkey client provider implementation. |
@@ -205,6 +220,9 @@ Below is a summary table of configurable values from values.yaml.
205220| api.deployment.volumeMounts | list | [ ] | Additional volume mounts. |
206221| api.deployment.extraContainers | list | [ ] | Extra sidecars for API only. |
207222| api.deployment.initContainers | list | [ ] | Init containers for API. |
223+ | api.deployment.startupProbe | object | httpGet on /nx-cloud/uptime-check:4203 | Startup probe configuration for API container. |
224+ | api.deployment.livenessProbe | object | httpGet on /nx-cloud/uptime-check:4203 | Liveness probe configuration for API container. |
225+ | api.deployment.readinessProbe | object | httpGet on /nx-cloud/uptime-check:4203 | Readiness probe configuration for API container. |
208226| api.serviceAccount.create | bool | true | Whether to create a ServiceAccount for API. |
209227| api.serviceAccount.name | string | nx-cloud-nx-api | ServiceAccount name for API. |
210228| api.serviceAccount.annotations | object | {} | ServiceAccount annotations for API. |
0 commit comments