Open wlonkly opened 10 months ago
I wanted to test this without an additional layer of indirection, so I've tried it in k3s instead of k3d, with the same outcome: it detects ingresses but no services.
I bumped into a similar issue.
I then realised the ingress host should end with .local
in order to be taken into account (see this part of the code).
For instance:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: nginx-test
spec:
ingressClassName: traefik
rules:
- host: nginx-test.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: nginx
port:
number: 80
I'm running external-mdns in k3d, installed from the "with RBAC" example on the README, and while I expect to encounter some mdns issues, I haven't been able to get that far. Here's what's running:
but it only detects the traefik LoadBalancer, and not the nginx-test ingress:
The nginx-test ingress is:
It doesn't detect it on startup, and it also doesn't detect it if I delete and apply the ingress again.
Not sure where to start to see what might be going wrong. Any tips? Thanks!