Azure / AzLoadBalancerMigration

This repo contains a PowerShell module to support Azure Load Balancer migration from Basic to Standard SKU
MIT License
10 stars 8 forks source link

Added check for AKS clusters with basic a load balancer #110

Closed cbellee closed 6 months ago

cbellee commented 6 months ago

Added checks for an AKS cluster with basic load balancer. If the load balancer is named 'kubernetes' or 'kubernetes-internal', the migration will exit.

When using a basic LB for AKS no LB is created at deploy time as cluster egress uses MS shared public IPs (default VM internet access approach). A Basic LB is only created when an operator deploys a Kubernetes service object with the Azure load balancer annotation and no tagging is applied to the Basic ALB/ILB by the platform, as is the case with a Standard Load Balancer.

mbrat2005 commented 6 months ago

108