Hi All

I need to change haproxy configuration in the openstack-ussuri environment using openstack-ansible.

for glance-api service I need to change backend load-balancing algorithm from source to least-connect 

I can see this configuration as part of group_vars of the source package /opt/openstack-ansible/inventory/group_vars/haproxy/haproxy.yml

-service:
haproxy_service_name: glance_api
haproxy_backend_nodes: "{{ groups['glance_api'] | default([]) }}"
haproxy_ssl: "{{ haproxy_ssl }}"
haproxy_port: 9292 haproxy_balance_alg: source
haproxy_balance_type: http
haproxy_backend_options:

Can you please let me know how to do so?