Add possibility to increase Murano agent timeout
Some Murano applications require much longer time than default 1 hour to be deployed. Change-Id: I395e9e3e8cccf70f316f313847648841822e639a Closes-Bug: #1777670
This commit is contained in:
parent
47243fa698
commit
fe70df356f
@ -45,6 +45,9 @@ haproxy_defaults_balance: "roundrobin"
|
||||
haproxy_glance_api_client_timeout: "6h"
|
||||
haproxy_glance_api_server_timeout: "6h"
|
||||
|
||||
haproxy_outward_rabbitmq_client_timeout: "1h"
|
||||
haproxy_outward_rabbitmq_server_timeout: "1h"
|
||||
|
||||
syslog_server: "{{ api_interface_address }}"
|
||||
syslog_haproxy_facility: "local1"
|
||||
|
||||
|
@ -67,8 +67,8 @@ listen outward_rabbitmq_management
|
||||
listen outward_rabbitmq_external
|
||||
mode tcp
|
||||
option tcplog
|
||||
timeout client 3600s
|
||||
timeout server 3600s
|
||||
timeout client {{ haproxy_outward_rabbitmq_client_timeout }}
|
||||
timeout server {{ haproxy_outward_rabbitmq_server_timeout }}
|
||||
bind {{ kolla_external_vip_address }}:{{ outward_rabbitmq_port }}
|
||||
{% for tcp_option in haproxy_listen_tcp_extra %}
|
||||
{{ tcp_option }}
|
||||
|
@ -58,6 +58,7 @@ murano_logging_debug: "{{ openstack_logging_debug }}"
|
||||
|
||||
openstack_murano_auth: "{{ openstack_auth }}"
|
||||
|
||||
murano_agent_timeout: 3600
|
||||
|
||||
####################
|
||||
# Kolla
|
||||
|
@ -12,6 +12,7 @@ transport_url = {{ rpc_transport_url }}
|
||||
|
||||
[engine]
|
||||
engine_workers = {{ openstack_service_workers }}
|
||||
agent_timeout = {{ murano_agent_timeout }}
|
||||
|
||||
[database]
|
||||
connection = mysql+pymysql://{{ murano_database_user }}:{{ murano_database_password }}@{{ murano_database_address }}/{{ murano_database_name }}
|
||||
|
Loading…
Reference in New Issue
Block a user