Skip to content

Commit

Permalink
increase timeout on finding ILB
Browse files Browse the repository at this point in the history
  • Loading branch information
nawazkh committed Dec 12, 2024
1 parent fda1881 commit 4f67373
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/azure_apiserver_ilb.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ func AzureAPIServerILBSpec(ctx context.Context, inputGetter func() AzureAPIServe
By("Verifying the Azure API Server Internal Load Balancer is created")
groupName := os.Getenv(AzureResourceGroup)
fmt.Fprintf(GinkgoWriter, "Azure Resource Group: %s\n", groupName)
internalLoadbalancerName := fmt.Sprintf("%s-%s", input.ClusterName, "apiserver-ilb-public-lb-internal")
internalLoadbalancerName := fmt.Sprintf("%s-%s", input.ClusterName, "public-lb-internal")

backoff := wait.Backoff{
Duration: 100 * time.Second,
Duration: 300 * time.Second,
Factor: 0.5,
Jitter: 0.5,
Steps: 5,
Steps: 7,
}
retryFn := func(ctx context.Context) (bool, error) {
defer GinkgoRecover()
Expand Down

0 comments on commit 4f67373

Please sign in to comment.