Re: [openstack-dev] [Neutron LBaaS] Need help with LBaaS drivers

2014-04-02 Thread Oleg Bondarev
Hi Vijay, Currently you may follow two ways in writing an LBaaS driver: 1) write it from scratch (like Radware, Netscaler, Embrane drivers) - in this case your driver should inherit abstract_driver.LoadBalancerAbstractDriver and will be running on Neutron service process, LBaaS agent

Re: [openstack-dev] [Neutron LBaaS] Need help with LBaaS drivers

2014-04-02 Thread Vijay B
Hi VijayV, Oleg! Thanks for the pointers! It turns out I had to put in an __init__.py in the dummy/ directory, else the driver wouldn't get loaded. Now I see newer issues, and am trying to fix those. I'll ping back on how that goes and if I have any questions.. Cheers! Regards, Vijay On Wed,

Re: [openstack-dev] [Neutron LBaaS] Need help with LBaaS drivers

2014-04-01 Thread Vijay Venkatachalam
Answered Inline! From: Vijay B [mailto:os.v...@gmail.com] Sent: Wednesday, April 2, 2014 7:14 AM To: OpenStack Development Mailing List (not for usage questions) Subject: [openstack-dev] [Neutron LBaaS] Need help with LBaaS drivers Hi, I'm trying to understand how LBaaS drivers work and so