Exposing traefik v2 dashboard on local k8s cluster does not work properly!

I am currently setting up traefik v2 with helm 3 on a local k8s cluster with docker-desktop and I encountered a problem with exposing the traefik dashboard with an ingress route. I think this could be related to the problem that the EXTERNAL-IP of the traefik service remains pending. Has anyone an idea for resolving the problem?

NAME      TYPE           CLUSTER-IP     EXTERNAL-IP   PORT(S)                      AGE
traefik   LoadBalancer   10.104.4.233   <pending>     80:31450/TCP,443:32054/TCP   9m20s

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

values.yaml

additionalArguments:
  - --api.insecure=true

It looks like it just took a while for the service to resolve the ip state to localhost.

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