-
Notifications
You must be signed in to change notification settings - Fork 583
Support of Octavia Availability Zone #2021
Description
The Ussuri release of Octavia now supports the availability zone feature where operators can specify some useful capabilities such as the compute availability zone for the amphora instances. For large distributed clouds (enterprise and public), this is a must-have feature that not only improves reliability but also allows operators to use their hardware efficiently. Effectively and according to the tasks. Currently, we have to create a separate zone only for load balancers (with one huge lb-mng network) and all cloud projects use such a hardware pool which sometimes may experience conflicts and resources overflow. This also leads to one point of failure.
I want to suggest to add the "availability-zone" parameters which will be used in Octavia LB request [1]
{
"loadbalancer": {
"name": "best_load_balancer",
"provider": "amphora",
"availability_zone": "my_az",
"vip_subnet_id": "d4af86e1-0051-488c-b7a0-527f97490c9a",
}
}
The same logic as for flavor-id: [2]
[1] https://docs.openstack.org/api-ref/load-balancer/v2/?expanded=create-a-load-balancer-detail#create-a-load-balancer
[2] https://github.com/gophercloud/gophercloud/blob/master/openstack/loadbalancer/v2/loadbalancers/requests.go#L112