Skip to content

Commit fccb19d

Browse files
authored
Merge pull request kubernetes#71616 from Huang-Wei/aks-param-typo
fix an param typo of AKS loadbalancer method
2 parents cd02e75 + f3dc0bc commit fccb19d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cloudprovider/providers/azure/azure_standard.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ func (az *Cloud) getAvailabilitySetID(resourceGroup, availabilitySetName string)
8484
}
8585

8686
// returns the full identifier of a loadbalancer frontendipconfiguration.
87-
func (az *Cloud) getFrontendIPConfigID(lbName, backendPoolName string) string {
87+
func (az *Cloud) getFrontendIPConfigID(lbName, fipConfigName string) string {
8888
return fmt.Sprintf(
8989
frontendIPConfigIDTemplate,
9090
az.SubscriptionID,
9191
az.ResourceGroup,
9292
lbName,
93-
backendPoolName)
93+
fipConfigName)
9494
}
9595

9696
// returns the full identifier of a loadbalancer backendpool.

0 commit comments

Comments
 (0)