Kaivalya Dambalkar
Kaivalya Dambalkar

Reputation: 113

Azure: How to create Standard Load Balancer without public IP address?

I want to run my application with AKS cluster(version - 1.18.14) with the dependency of standard load balancer to create multiple node pools. But, the standard load balancer is creating public IP address. which is not suitable for my application. Because my application is private not public.

Is there any way to "create Standard load balancer without public IP address in Azure?"

Thanks.

Upvotes: 1

Views: 1671

Answers (1)

Charles Xu
Charles Xu

Reputation: 31414

Actually, when you create the AKS, it creates a public IP as the outbound IP address for the Load Balancer, and it's for the egress. So it does not affect that your application is private or public. Instead, what you need to focus on is inbound, if your application is private, you just need to use the internal Load Balancer, I think this is what you are looking for.

Upvotes: 2

Related Questions