-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UPSTREAM: 63926: Avoid unnecessary calls to the cloud provider #19742
UPSTREAM: 63926: Avoid unnecessary calls to the cloud provider #19742
Conversation
If the service controller is processing a service that does not have type LoadBalancer and does not have any external load balancer recorded in its status, do not call the cloud provider to check for an associated load balancer. This commit fixes bug 1571940. https://bugzilla.redhat.com/show_bug.cgi?id=1571940
/assign @derekwaynecarr |
@derekwaynecarr @smarterclayton @deads2k -- Can you please take a look at this so we can get it onto starter to see if we can reduce the API calls we are making? Thanks |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, knobunc, Miciah The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
If the service controller is processing a service that does not have type LoadBalancer and does not have any external load balancer recorded in its status, do not call the cloud provider to check for an associated load balancer. This commit fixes bug 1583718. https://bugzilla.redhat.com/show_bug.cgi?id=1583718 This is a manual cherry-pick of openshift#19742.
If the service controller is processing a service that does not have type LoadBalancer and does not have any external load balancer recorded in its status, do not call the cloud provider to check for an associated load balancer. This commit fixes bug 1583718. https://bugzilla.redhat.com/show_bug.cgi?id=1583718 This is a manual cherry-pick of openshift#19742.
If the service controller is processing a service that does not have type LoadBalancer and does not have any external load balancer recorded in its status, do not call the cloud provider to check for an associated load balancer.
This commit fixes bug 1571940.
https://bugzilla.redhat.com/show_bug.cgi?id=1571940
Note for backporting:
createLoadBalancersIfNeeded
in 3.9 returns two arguments, so thereturn nil
will need to be amended asreturn nil, notRetryable
in any backport to 3.9.