Kubernetes - Ingress
You deployed this Traefik Ingress YAML but traffic is not reaching your service. What is the most probable cause?
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: traefik-ingress
spec:
rules:
- host: app.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: my-service
port:
number: 80
