Not able to reach services via newly deployed traefik

Hello,

My test kubernetes cluster is deployed over openstack at cloudvps.I can see that the newly deployed traefik service has picked up public ip and the type of the service is Loadbalancer.
My application has the required k8s ingress config in the deployment yaml and I have configured the above DNS A record for my application and I thought if I click on the application endpoint then that would reach out to ingress and ingress would forward that request to the service and the service would foward it to the application container on the specified port.
I have checked the TLS certificate in my k8s ingress and also checked that it is available as secret in the namespace where my app is running.
When I do curl -vvv I see this.

  • Trying ingress_public_ip...
  • TCP_NODELAY set
  • Connected to <ingress_url_of_the_app> (ingress_public_ip) port 443 (#0)
  • ALPN, offering h2
  • ALPN, offering http/1.1
  • successfully set certificate verify locations:
  • CAfile: /etc/ssl/cert.pem
    CApath: none
  • TLSv1.2 (OUT), TLS handshake, Client hello (1):

And then it terminates.What could be wrong here?

Thanks,
Omkar