This message was deleted.
# k3d
a
This message was deleted.
w
Hey 👋 How are you exposing your application ports? Which service type are you using? Since you're hitting Traefik here, you're trying to access it via Ingress, right?
f
Ports are exposed via k8s services - 80/443 - exposed as Loadbalancer Other ports - exposed as Cluster IP
w
80/443 should already be taken by Traefik, so I guess you have some pending svclb pods for yours? ClusterIP service means that it's only accessible within the cluster network, so you'd have to change that to e.g. NodePort or hostPort.
m
It is possible to run k3d without traefik though, right?
w
Yep, you can pass the
--disable=traefik
flag to K3s server
f
Let me try to disable the
traefik
and try. will update here.
Thanks so much, after disabling
traefik
, I am able to connect to application.