2713
2713

Reputation: 195

How to access the Kubernetes external IP as HTTPS

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.

Upvotes: 0

Views: 176

Answers (1)

Arghya Sadhu
Arghya Sadhu

Reputation: 44549

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

Upvotes: 2

Related Questions