cloud-provider-azure
cloud-provider-azure copied to clipboard
Add support for HA mode on standard load balancer
Is your feature request related to a problem?/Why is this needed
This is a new feature request to add support for HA mode on standard load balancer via service annotation.
Describe the solution you'd like in detail
Add a new service annotation service.beta.kubernetes.io/azure-load-balancer-enable-high-availability-mode
. And when this annotation is set to true, the following configuration would be added in SLB rule:
"loadBalancingRules": [
{
"name": "HTTPLBRule",
"properties": {
"enableHighAvailabilityMode": true,
...
}
}
]
Describe alternatives you've considered
Additional context
Depends on #403, the feature is only available in Azure network API version 2020-08-01.
the new property is not available in Azure Go SDK yet.
/hold
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale
.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close
.
Send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale
related #429
Should this issue be closed? @feiskyer
this is still not supported yet.