-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Feature Request: honor publicIPs along with createExternalLoadBalancer #6452
Comments
I'm not sure I quite understand - you want to join an existing load It sounds like what you want is an L7 router, not an L3 load balancer that On Sun, Apr 5, 2015 at 11:55 AM, Kyle Lemons notifications@github.com
|
In GCE, you can set up multiple load-balancers on the same IP address (though not the same port, obviously). I want to specify the IP address that will be used for creating the forwarding-rule, essentially. |
That should already work - I just scanned through the relevant code - if On Tue, Apr 7, 2015 at 8:11 PM, Kyle Lemons notifications@github.com
|
I confirm this works. Phabricator example is doing exactly this. |
I am trying to understand what are the options in Openstack? I tested with PublicIP's , works great , but obviously , has manual things that needs to be taken care of. Appreciate any suggestions. Thanks |
What specifically are you looking for help with? createExternalLoadBalancer should work properly in openstack, although you may get hit by #7199, which was just fixed today. |
My understanding was createExternalLB worked only with GCE, totally wrong!! I guess Neutron LBaaS should be enabled to take advantage of cELB, do we need any other openstack projects besides neutron? configuration or setup changes we need to be aware of? Thanks On Apr 23, 2015, at 8:20 PM, Alex Robinson <notifications@github.commailto:notifications@github.com> wrote: What specifically are you looking for help with? createExternalLoadBalancer should work properly in openstack, although you may get hit by #7199#7199, which was just fixed today. — |
Not that I know of, but I haven't tried it myself. If you run into any issues with it, be sure to let us know! |
Thanks Alex. Will let you know how it goes. Not that I know of, but I haven't tried it myself. If you run into any issues with it, be sure to let us know! — |
This may be already covered by the
v1beta3
changes, #1161, or #1107, but I wanted to register my request in case it wasn't.Caveat: My exposure, at the moment, is purely via GKE:
I have a desire to maintain a single external IP address. This seems simplest; I can use the same DNS name as I have in my SSL certificate for all of the services I'm running. So, to that end, I requested a static IP address in GCE and have manually created the low-level loadbalancer for it and specified the static IP in my
publicIPs
list (withoutcreateExternalLoadBalancer
) for the services I want externalized. This works, but it required a lot of tinkering with firewalls and target pools and experimentation with thecreateExternalLoadBalancer
flag before I figured out the right combination. The first thing I tried was this:If it would be possible for that to be a valid input that would cause the GCE/GKE provider to create the right firewall, target pools, and load balancer (bonus points if it made one that was shared among all services with the same external IP), it might save some time for future intrepid explorers.
The text was updated successfully, but these errors were encountered: