f556a42a87
With this fix operator can tune client/server timeouts of HAProxy to avoid receiving '504' for lengthy requests by API clients. Change-Id: I12611b34f99759e6b6527fea3768a971c9fbdd71 Closes-Bug: #1662506
18 lines
659 B
YAML
18 lines
659 B
YAML
---
|
|
project_name: "haproxy"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
keepalived_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-keepalived"
|
|
keepalived_tag: "{{ openstack_release }}"
|
|
keepalived_image_full: "{{ keepalived_image }}:{{ keepalived_tag }}"
|
|
|
|
haproxy_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-haproxy"
|
|
haproxy_tag: "{{ openstack_release }}"
|
|
haproxy_image_full: "{{ haproxy_image }}:{{ haproxy_tag }}"
|
|
|
|
haproxy_client_timeout: "1m"
|
|
haproxy_server_timeout: "1m"
|