mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 03:41:45 +00:00
Merge pull request #72621 from feiskyer/lb-rules-count
Increase default maximumLoadBalancerRuleCount to 250
This commit is contained in:
commit
8b3b5a9fe7
@ -47,14 +47,15 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// CloudProviderName is the value used for the --cloud-provider flag
|
// CloudProviderName is the value used for the --cloud-provider flag
|
||||||
CloudProviderName = "azure"
|
CloudProviderName = "azure"
|
||||||
rateLimitQPSDefault = 1.0
|
rateLimitQPSDefault = 1.0
|
||||||
rateLimitBucketDefault = 5
|
rateLimitBucketDefault = 5
|
||||||
backoffRetriesDefault = 6
|
backoffRetriesDefault = 6
|
||||||
backoffExponentDefault = 1.5
|
backoffExponentDefault = 1.5
|
||||||
backoffDurationDefault = 5 // in seconds
|
backoffDurationDefault = 5 // in seconds
|
||||||
backoffJitterDefault = 1.0
|
backoffJitterDefault = 1.0
|
||||||
maximumLoadBalancerRuleCount = 148 // According to Azure LB rule default limit
|
// According to https://docs.microsoft.com/en-us/azure/azure-subscription-service-limits#load-balancer.
|
||||||
|
maximumLoadBalancerRuleCount = 250
|
||||||
|
|
||||||
vmTypeVMSS = "vmss"
|
vmTypeVMSS = "vmss"
|
||||||
vmTypeStandard = "standard"
|
vmTypeStandard = "standard"
|
||||||
|
Loading…
Reference in New Issue
Block a user