This is the staging area of the design docs prior to or under development. Once the feature is done, the corresponding design doc would be moved to Topics.
This is the multi-page printable view of this section. Click here to print.
Design Docs and KEPs
1 - Azure Private Link Service Integration
This feature is now generally available. The page has been moved to (topics).
2 - Basic to Standard Load Balancer Migration
Background
On September 30, 2025, Basic Load Balancer will be retired. This design document describes the planned migration path from Basic Load Balancer to Standard Load Balancer.
Design
The following
User
stands for human users, or any cluster provisioning tools (e.g., AKS).
User must change the Load Balancer sku manually in the configuration file from
Basic
toStandard
.If the basic Load Balancer is not removed, it will be deleted during the migration.
All IPs of existing Load Balancer typed services will remain unchanged after migration, but the public IP sku will be changed to
Standard
.All nodes will join the new Standard Load Balancer backend pool after migration.
User must manually configure the Standard Load Balancer for outbound traffic after migration.
User must manually restart the cloud-controller-manager to trigger the migration process.
Workflow
This proposed migration process may introduce downtime.
Introduce a new function that runs 1 time per pod restart to decouple the nodes and remove the basic Load Balancer if needed.
Check the service ingress IP address, if it is an internal service, create a corresponding frontend IP configuration with the IP address in
reconcileFrontendIPConfigs
.If it is an external service, link the public IP ID to the frontend IP configuration, and update the public IP sku to
Standard
inensurePublicIPExists
.Could keep other code path unchanged (to be validated).