How to access the Kubernetes external IP as HTTPS

1/14/2020

I've deployed a Django app on Azure Kubernetes service using a load balancer service. So far accessing the external IP of the load balancer I'm able to access my application but I need to expose the app for HTTPS requests. I'm new to Kubernetes and unable to find any article which provides these steps. So please help me with the steps/action I need to perform to make this work.

-- Ja13
kubernetes

1 Answer

1/14/2020

You need to expose your application using ingress.Here is the doc on how to do it in azure kubernetes service.

-- Arghya Sadhu
Source: StackOverflow