404 Not Found on Traefik Dashboard via http on local Kubernetes Cluster

Hello there,
I have a problem regarding exposing the traefik v2 dashboard on local kubernetes cluster with helm v3. I get a 404 Not found error when trying to access the dashboard through my web browser. Does anyone how to resolve this problem?

traefik-values.yaml

additionalArguments:
  - --api.insecure=true
  - --serversTransport.insecureSkipVerify=true
  - --log.level=debug

traefik-ingressroute.yaml

apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
  name: traefik-dashboard
  namespace: traefik
spec:
  entryPoints:
    - web
  routes:
    - match: Host(`traefik.local`)
      kind: Rule
      services:
        - name: api@internal
          kind: TraefikService

It finally works, just forgot to apply the new ingressroute :smiley:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.