Unable to install Traefik from Helm Chart: no matches for kind "IngressRoute" in version "traefik.io/v1alpha1"

I am trying to install from Helm Chart and get the following:

helm -n traefik upgrade -i traefik traefik/traefik --dry-run --debug
history.go:56: [debug] getting history for release traefik
Release "traefik" does not exist. Installing it now.
install.go:192: [debug] Original chart version: ""
install.go:209: [debug] CHART PATH: C:\Users\RabJen\AppData\Local\Temp\helm\repository\traefik-26.1.0.tgz

install.go:210: [debug] WARNING: This chart or one of its subcharts contains CRDs. Rendering may fail or contain inaccuracies.
Error: unable to build kubernetes objects from release manifest: resource mapping not found for name: "traefik-dashboard" namespace: "traefik" from "": no matches for kind "IngressRoute" in version "traefik.io/v1alpha1"
ensure CRDs are installed first
helm.go:84: [debug] resource mapping not found for name: "traefik-dashboard" namespace: "traefik" from "": no matches for kind "IngressRoute" in version "traefik.io/v1alpha1"
ensure CRDs are installed first
unable to build kubernetes objects from release manifest
helm.sh/helm/v3/pkg/action.(*Install).RunWithContext
        helm.sh/helm/v3/pkg/action/install.go:277
main.runInstall
        helm.sh/helm/v3/cmd/helm/install.go:278
main.newUpgradeCmd.func2
        helm.sh/helm/v3/cmd/helm/upgrade.go:122
github.com/spf13/cobra.(*Command).execute
        github.com/spf13/cobra@v1.5.0/command.go:872
github.com/spf13/cobra.(*Command).ExecuteC
        github.com/spf13/cobra@v1.5.0/command.go:990
github.com/spf13/cobra.(*Command).Execute
        github.com/spf13/cobra@v1.5.0/command.go:918
main.main
        helm.sh/helm/v3/cmd/helm/helm.go:83
runtime.main
        runtime/proc.go:250
runtime.goexit
        runtime/asm_amd64.s:1571

Indeed our Cluster has no Ingress Controller because Ingress with subdomains is not supported in our network, but I must provide Traefik for something I want to install and it should only be relevant to the namespace I want to install that in.

Is there another way or am I missing anything?