Istio in AKS

zdsd 1 Reputation point
2020-06-17T12:12:52.923+00:00

with reference to below article able to create and deploy application to AKS with Istio service mesh. However when trying to implement with either ASP.NET Core or ASP.NET Core WebAPI i am getting error.

https://learn.microsoft.com/en-us/azure/aks/servicemesh-istio-scenario-routing?pivots=client-operating-system-windows

Here below is the error when trying to access http://52.224.130.188/Home/View:

"upstream connect error or disconnect/reset before headers. reset reason: connection failure".

The same Virtual service and ingress gateway when deployed with Voting app is working.

Azure Kubernetes Service (AKS)
Azure Kubernetes Service (AKS)
An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
1,886 questions
{count} votes

1 answer

Sort by: Most helpful
  1. vipullag-MSFT 24,871 Reputation points
    2020-06-30T06:20:14.333+00:00

    @zdsd

    Apologies in delayed response.

    Since you are able to use use the voting app (as provided as sample), this would mean the setup of istio and kubernetes is correct. However with limited information available, it is difficult to identify the problem.

    The error which is being thrown is generic and is happens when there is network connectivity issues between ingress gateway and service which is connected to the pod.
    I would suggest you to start looking at the logs of the ingresscontroller (which would be gateway in istio) and see what is the issue.

    Logs in kubernetes can be seen via kubectl logs -f -n {{namespace}} {{podname}}

    Also if you are able to share sample manifest which you have used, I might be able to help more.

    Thanks.

    Please 'Accept as answer' if it helped, so that it can help others in the community looking for help on similar topics.

    0 comments No comments