Set Nova and Ironic rpc timeout to 600

On a heavily loaded undercloud (particularly in virt where there
may be many vms running on a single physical system), the default
rpc timeout of 60 in Nova and Ironic may be insufficient.  Increase
it to 600 to match the Heat timeout.

Change-Id: Ifbe046ef1a0d4bb3f32ea57840cb9fc2aed7d551
Resolves: rhbz#1251117
This commit is contained in:
Ben Nemec 2015-08-06 15:57:05 +00:00
parent a7a5268122
commit de5cebfd4c
1 changed files with 2 additions and 0 deletions

View File

@ -303,6 +303,7 @@ class { 'nova::compute':
nova_config {
'DEFAULT/my_ip': value => $ipaddress;
'DEFAULT/linuxnet_interface_driver': value => 'nova.network.linux_net.LinuxOVSInterfaceDriver';
'DEFAULT/rpc_response_timeout': value => '600';
}
@ -336,6 +337,7 @@ class { 'ironic::api':
ironic_config {
'DEFAULT/my_ip': value => hiera('controller_host');
'DEFAULT/rpc_response_timeout': value => '600';
'glance/host': value => hiera('glance::api::bind_host');
'discoverd/enabled': value => 'true';
'pxe/pxe_config_template': value => '$pybasedir/drivers/modules/ipxe_config.template';