How to reach website, deployed on Azure Kubernetes Cluster

10/2/2019

I have created an AKS Cluster and deployed a simple asp .net core web site-project into the cluster.

How do I reach the website with a browser. I cant find an IP-address or hostname. Do I need something more?

Simplest solution please :)

-- Cowborg
asp.net-core
azure-kubernetes

1 Answer

10/2/2019

I think you need a service with LoadBalancer type to expose our deployment to the internet. Then you can access it through the website outside. You can also follow the steps in the tutorial about how to deploy the application to AKS.

-- Charles Xu
Source: StackOverflow