From 26e4b54cada351032309ed7c0002f66f9545da83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20Ro=C3=9Fner?= Date: Tue, 8 Jul 2025 08:26:53 +0200 Subject: [PATCH] docs(gettings-started.md): Explicitly require `ingressClassName` --- docs/getting-started.md | 10 +++++----- helmfile/environments/default/theme.yaml.gotmpl | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index c228ce27..48cb43cf 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -226,16 +226,16 @@ cluster: ### Ingress -By default, the `ingressClassName` is empty and selects the default ingress controller in your cluster. You can customize it by -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. +You need to explicitly set the `ingressClassName`, as openDesk defines it as an empty string by default. This prevents fallback to the cluster’s default ingress class, since the Helm charts used by openDesk components are not consistently aligned in how they handle a missing or empty `ingressClassName`. ```yaml ingress: - ingressClassName: "name-of-my-nginx-ingress" + ingressClassName: "nginx" ``` -Currently, the only supported ingress controller is `ingress-nginx` (see -[requirements.md](./docs/requirements.md) for reference). +> **Note**
+> Currently, the only supported ingress controller is `ingress-nginx` +> (see [requirements.md](./docs/requirements.md) for reference). ### Container runtime diff --git a/helmfile/environments/default/theme.yaml.gotmpl b/helmfile/environments/default/theme.yaml.gotmpl index 55e0a52a..12fa9213 100644 --- a/helmfile/environments/default/theme.yaml.gotmpl +++ b/helmfile/environments/default/theme.yaml.gotmpl @@ -73,7 +73,7 @@ theme: 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 }} - 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 }} portalTiles: adminAnnouncement: {{ readFile "./../../files/theme/admin_announcements/favicon.svg" | b64enc | quote }}