my ingress does not have any annotations. Due to that I used the same ingress yaml file in traefik v2.
After traefik v2 migration HTTP request capacity is reduced 90%
The below one is my traefik V1 ingress yaml file. Based on that refer suggestion Ingress yaml for traefik v 2.4.8 version.
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: test-ingress
namespace: dev
spec:
rules:
- host: hole.apps-apitest-mctoo.io ## ingress URL
http:
paths:
- path: /
pathType: ImplementationSpecific
backend:
service:
name: hole # k8s kind: service ,, service name: hole
port:
number: 80
- host: tee.xxx.dev.test.me.dev ## load balancer url
http:
paths:
- path: /
pathType: ImplementationSpecific
backend:
service:
name: hole # k8s kind: service ,, service name: hole
port:
number: 80