From dd7146b905814cda4cc240f27c307a6be81abe3e Mon Sep 17 00:00:00 2001 From: Jonas Forsberg Date: Mon, 11 Nov 2024 15:15:46 +0100 Subject: [PATCH] updated options --- charts/home-assistant/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/charts/home-assistant/README.md b/charts/home-assistant/README.md index 19015f3..dfc1bc4 100644 --- a/charts/home-assistant/README.md +++ b/charts/home-assistant/README.md @@ -13,6 +13,19 @@ The following table lists the configurable parameters of the Home-assistant char | ------------------------ | ----------------------- | -------------- | | `image.repository` | | `"ghcr.io/home-assistant/home-assistant"` | | `image.tag` | | `null` | +| `controller.enabled` | should the main workload be included or not | `true` | +| `controller.type` | valid options are deployment, statefulset, job | `"statefulset"` | +| `service.http.enabled` | | `true` | +| `service.http.ports.http.port` | | `80` | +| `service.http.ports.http.targetPort` | | `8123` | +| `ingress.enabled` | | `false` | +| `ingress.service` | what service should the ingress target | `"http"` | +| `ingress.servicePort` | | `80` | +| `ingress.className` | | `"nginx"` | +| `ingress.hosts` | | `[{"host": "example.local", "paths": [{"path": "/", "pathType": "Prefix"}]}]` | +| `ingress.annotations` | | `{}` | +| `ingress.tls` | | `[]` | +| `volumeClaimTemplates` | | `[{"name": "config", "mountPath": "/config", "accessMode": "ReadWriteOnce", "storageClassName": "default", "size": "1Gi"}]` | | `livenessProbe.httpGet.path` | | `"/"` | | `livenessProbe.httpGet.port` | | `8123` | | `livenessProbe.initialDelaySeconds` | | `5` |