-
Notifications
You must be signed in to change notification settings - Fork 50
Load Balancer update #82
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
Conversation
0ee4af6 to
ad560c4
Compare
|
@ingvagabund ptal |
Changes the type/name of the LoadBalancers field in ProviderConfig. AWS only allows identifying load balancers by name, and their Describe call doesn't allow Filters.
|
@spangenberg good candidate for another e2e test. Something like:
Could be even done as part of the |
|
|
||
| } | ||
|
|
||
| err = a.UpdateLoadBalancers(client, machineProviderConfig, newestInstance, mLog) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could inline it here
|
/lgtm |
| Instances: []*elb.Instance{elbInstance}, | ||
| LoadBalancerName: aws.String(elbName), | ||
| } | ||
| _, err := client.RegisterInstancesWithLoadBalancer(req) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could inline here as well
|
/approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ingvagabund The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
looks like the router test is not finding what it expects: /retest |
Signed-off-by: Vince Prignano <[email protected]> add comments Signed-off-by: Vince Prignano <[email protected]>
Introduces the capability of adding machines to specified Load Balancers as they are created or updated.
The LoadBalancer field in ProviderConfig is renamed from LoadBalancerIDs to LoadBalancerNames and its type set to string. AWS only allows specifying load balancers by name, and their describe call doesn't allow Filters.
Depends on #81