Skip to content

Commit 03205c1

Browse files
Merge pull request #464 from homarr-labs/docs/update-helm-docs
Update Helm chart documentation
2 parents ca09c50 + d00d38f commit 03205c1

File tree

1 file changed

+9
-1
lines changed
  • docs/getting-started/installation

1 file changed

+9
-1
lines changed

docs/getting-started/installation/helm.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<img src="https://raw.githubusercontent.com/homarr-labs/charts/refs/heads/main/charts/homarr/icon.svg" align="right" width="92" alt="homarr logo">
44

5-
![Version: 8.4.1](https://img.shields.io/badge/Version-8.4.1-informational?style=flat)
5+
![Version: 8.4.2](https://img.shields.io/badge/Version-8.4.2-informational?style=flat)
66
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat)
77
![AppVersion: v1.45.1](https://img.shields.io/badge/AppVersion-v1.45.1-informational?style=flat)
88

@@ -435,8 +435,12 @@ All available values are listed on the [artifacthub](https://artifacthub.io/pack
435435
| ingress.hosts | list | `[{"host":"chart-example.local","paths":[{"path":"/"}]}]` | Ingress hosts configuration |
436436
| ingress.ingressClassName | string | `""` | Ingress class name |
437437
| ingress.tls | list | `[]` | Ingress TLS configuration |
438+
| livenessProbe.failureThreshold | int | `3` | Failure threshold for liveness probe - number of consecutive failures before pod is restarted |
438439
| livenessProbe.httpGet.path | string | `"/api/health/live"` | This is the liveness check endpoint used by Kubernetes to determine if the application is still running. |
439440
| livenessProbe.httpGet.port | int | `7575` | The port on which the liveness check will be performed. This must be the same as the container port exposed by the application. |
441+
| livenessProbe.initialDelaySeconds | int | `10` | Initial delay in seconds before the liveness probe starts |
442+
| livenessProbe.periodSeconds | int | `10` | Period in seconds between liveness probe checks |
443+
| livenessProbe.timeoutSeconds | int | `1` | Timeout in seconds for each liveness probe check |
440444
| nameOverride | string | `""` | Overrides chart's name |
441445
| nodeSelector | object | `{}` | Node selectors for pod scheduling |
442446
| persistence.homarrDatabase.accessMode | string | `"ReadWriteOnce"` | homarr-database access mode |
@@ -457,8 +461,12 @@ All available values are listed on the [artifacthub](https://artifacthub.io/pack
457461
| podSecurityContext | object | `{}` | Pod security context |
458462
| rbac | object | `{"enabled":false}` | Enable RBAC resources for Kubernetes integration Creates Role, ClusterRole, and associated bindings for Homarr's Kubernetes features |
459463
| rbac.enabled | bool | `false` | Enable to create RBAC resources and activate Kubernetes integration |
464+
| readinessProbe.failureThreshold | int | `3` | Failure threshold for readiness probe - number of consecutive failures before pod is considered unready |
460465
| readinessProbe.httpGet.path | string | `"/api/health/ready"` | This is the readiness check endpoint used by Kubernetes to determine if the application is ready to handle traffic. |
461466
| readinessProbe.httpGet.port | int | `7575` | The port on which the readiness check will be performed. This must match the container's exposed port. |
467+
| readinessProbe.initialDelaySeconds | int | `10` | Initial delay in seconds before the readiness probe starts. increase this value if the pod is slow to fully start. |
468+
| readinessProbe.periodSeconds | int | `10` | Period in seconds between readiness probe checks |
469+
| readinessProbe.timeoutSeconds | int | `1` | Timeout in seconds for each readiness probe check |
462470
| replicaCount | int | `1` | Number of replicas |
463471
| resources | object | `{}` | Resource configuration |
464472
| securityContext | object | `{}` | Security context |

0 commit comments

Comments
 (0)