a10networks / a10-neutron-lbaas

A10 Networks, Openstack Neutron LBaaS Driver
Apache License 2.0
9 stars 19 forks source link

Create VIP on a specific device #456

Open mloza-tc opened 5 years ago

mloza-tc commented 5 years ago

Hello,

I have OpenStack environment running the rocky version. I have thunder appliance and vThunder(outside of OpenStack env) working. I'm able to create loadbalancer in the A10 device through neutron cli. I would like to know if it's possible to select a specific device where the VIPs will be created if I have multiple device specified in the config?

Below is my A10 config.py

member_name_use_uuid = True verify_appliances = True devices = { "adlb01b": { "host": "10.0.91.11", "username": "admin", "password": "a10", "api_version": "3.0", "port": 443, }, "opslb": { "host": "10.0.86.6", "username": "admin", "password": "a10", "api_version": "3.0", "port": 443, }, }

I have this config but the VIPs get only created in adlb01b. Is it possible to make it random or target a specific device?

Thanks