Traefik 404 page not found all the time

I installed Traefik manually with files from: https://docs.traefik.io/routing/providers/kubernetes-crd/#configuration-examples

Problem is, in dashboard everything looks correctly all endpoints are displayed and ingressroute is taged "succed". After i put domain to browser im getting 404 with such configuration. IP of AWS LB is added to /etc/hosts

apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
  annotations:
  name: traefik-test-ingressroute
  namespace: default
spec:
  entryPoints:
  - traefik
  routes:
  - kind: Rule
    match: Host(`test.domain.com`) 
    services:
    - name: whoami
      port: 80

in logs im getting only such try of connection:

172.20.59.64 - - [29/Mar/2020:22:19:47 +0000] "GET / HTTP/2.0" - - "-" "-" 190 "-" "-" 0ms
172.20.59.64 - - [29/Mar/2020:22:19:49 +0000] "GET / HTTP/2.0" - - "-" "-" 191 "-" "-" 0ms
172.20.59.64 - - [29/Mar/2020:22:19:49 +0000] "GET / HTTP/2.0" - - "-" "-" 192 "-" "-" 0ms
172.20.59.64 - - [29/Mar/2020:22:19:49 +0000] "GET / HTTP/2.0" - - "-" "-" 193 "-" "-" 0ms
172.20.59.64 - - [29/Mar/2020:22:19:49 +0000] "GET / HTTP/2.0" - - "-" "-" 194 "-" "-" 0ms
172.20.59.64 - - [29/Mar/2020:22:21:09 +0000] "GET / HTTP/2.0" - - "-" "-" 195 "-" "-" 0ms

I finally solved issue. Problem was with my configuration. We are not putting traefik service in to endpoint but name of endpoint configured in traefik arguments like:

--entryPoints.web.address=:80

so config should looks like:

apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
  annotations:
  name: traefik-test-ingressroute
  namespace: default
spec:
  entryPoints:
  - web
  routes:
  - kind: Rule
    match: Host(`test.domain.com`) 
    services:
    - name: whoami
      port: 80