docs(gettings-started.md): Explicitly require ingressClassName

This commit is contained in:
Thorsten Roßner
2025-07-08 08:26:53 +02:00
parent 7ae716bc82
commit 26e4b54cad
2 changed files with 6 additions and 6 deletions

View File

@@ -226,16 +226,16 @@ cluster:
### Ingress ### Ingress
By default, the `ingressClassName` is empty and selects the default ingress controller in your cluster. You can customize it by You need to explicitly set the `ingressClassName`, as openDesk defines it as an empty string by default. This prevents fallback to the clusters default ingress class, since the Helm charts used by openDesk components are not consistently aligned in how they handle a missing or empty `ingressClassName`.
setting the following attribute to the name of the ingress controller the within your deployment you wish to use. Useful if the ingress controller you wish to use is not the default.
```yaml ```yaml
ingress: ingress:
ingressClassName: "name-of-my-nginx-ingress" ingressClassName: "nginx"
``` ```
Currently, the only supported ingress controller is `ingress-nginx` (see > **Note**<br>
[requirements.md](./docs/requirements.md) for reference). > Currently, the only supported ingress controller is `ingress-nginx`
> (see [requirements.md](./docs/requirements.md) for reference).
### Container runtime ### Container runtime

View File

@@ -73,7 +73,7 @@ theme:
webManifestIcon192: {{ readFile "./../../files/theme/portal/favicon/web-app-manifest-192x192.png" | b64enc | quote }} webManifestIcon192: {{ readFile "./../../files/theme/portal/favicon/web-app-manifest-192x192.png" | b64enc | quote }}
webManifestIcon512: {{ readFile "./../../files/theme/portal/favicon/web-app-manifest-512x512.png" | b64enc | quote }} webManifestIcon512: {{ readFile "./../../files/theme/portal/favicon/web-app-manifest-512x512.png" | b64enc | quote }}
waitingSpinnerSvg: {{ readFile "./../../files/theme/portal/waiting-spinner.svg" | b64enc }} waitingSpinnerSvg: {{ readFile "./../../files/theme/portal/waiting-spinner.svg" | b64enc | quote }}
backgroundSvg: {{ readFile "./../../files/theme/portal/background.svg" | b64enc | quote }} backgroundSvg: {{ readFile "./../../files/theme/portal/background.svg" | b64enc | quote }}
portalTiles: portalTiles:
adminAnnouncement: {{ readFile "./../../files/theme/admin_announcements/favicon.svg" | b64enc | quote }} adminAnnouncement: {{ readFile "./../../files/theme/admin_announcements/favicon.svg" | b64enc | quote }}