Increase nova-api worker

We've seen some tempest failures caused by 504 errors returned by nova
api. Looking at the log files we could not find anything slow within
the logic and it seems nova-api is not responding for some reason.

This increases the number of workers as the workaround for the issue.

Change-Id: Ic6d7154fe8f2e65900dc80db0025db2549ebf1e4
This commit is contained in:
Takashi Kajinami 2023-08-04 10:54:00 +09:00
parent 6b79034191
commit 40b17a8298

View File

@ -176,7 +176,7 @@ class openstack_integration::nova (
ssl_key => "/etc/nova/ssl/private/${facts['networking']['fqdn']}.pem",
ssl_cert => $::openstack_integration::params::cert_path,
ssl => $::openstack_integration::config::ssl,
workers => 2,
workers => 4,
}
class { 'nova::wsgi::apache_metadata':
bind_host => $::openstack_integration::config::host,