Azure front door not working with. private link service created by internal load balancer

Hi all,
I have integrated private link service with internal load balancer and then integrate that private link service with front door service using below documentations :
https://blog.baeke.info/2022/06/09/azure-kubernetes-services-and-azure-private-link-integration/
I am able to connect to my service using its private ip within vnet as shown below :
bash-5.1# kubectl get svc my-service
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
my-service LoadBalancer 10.0.130.5 10.3.5.246 80:32462/TCP,443:32547/TCP 5d21h
bash-5.1# curl 10.3.5.246
404 page not found
bash-5.1# curl 10.3.5.246/service-name
request should have bearer token headers or internal headers. no token/api keys/ad ingest key /internal headers are found
But same is not happening when integrated private link service with front door service
when i try to curl front door service url its giving error below :
akashwarkhade % curl -i https://front-door-name-bjg2abbgc4hfaahp.z01.azurefd.net
HTTP/2 502
cache-control: no-store
content-length: 952
content-type: text/html
x-azure-ref: 0EOJYYwAAAADxJmfOsrcfTKvLVwax/bsCQk9NMDJFREdFMDgxNwA2NzgxNzMzMi1mZTkzLTRiZDgtOThhYS1kNGQxNDllZmY5NzQ=
x-cache: CONFIG_NOCACHE
date: Wed, 26 Oct 2022 07:30:24 GMT<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='content-type'/>
<style type='text/css'>body {font-family:Arial; margin-left:40px; }img { border:0 none; }#content { margin-left: auto; margin-right: auto }#message h2 { font-size: 20px; font-weight: normal; color: #000000; margin: 34px 0px 0px 0px }#message p { font-size: 13px; color: #000000; margin: 7px 0px 0px0px}#errorref { font-size: 11px; color: #737373; margin-top: 41px }</style>
<title>Service unavailable</title>
</head>
<body>
<div id='content'>
<div id='message'>
<h2>Our services aren't available right now</h2>
<p>We're working to restore all services as soon as possible. Please check back soon.</p>
</div>
<div id='errorref'><span></span>
</div>
</div>
</body>
</html>%
(note : i have updated frontdoor name in curl request for security)
PFB images for private link and front door config :
Please let me know what might be wrong