Hi @Lev Goronshtein ,
Similar query answered here : https://learn.microsoft.com/en-us/answers/questions/933109/azure-function-core-tool-http-trigger-to-https.html?childToView=935701#answer-935701
As you mentioned, SSL termination happens at the Ingress controller however it doesnt mean that apps running on AKS would not listen to https traffic. The communication between the Ingress and Pods happens through port 80 but this is only internal.
https://learn.microsoft.com/en-us/azure/aks/concepts-network#ssltls-termination
If SSL binding is done for the app running on AKS, then you can modify the ASP.net core configuration to listen to http and https traffic.
Feel free to reach out to me if you have any questions or concerns.