7b58cbe226
We are noticing several tests failing in our low memory environment
because of timeout in neutron requests.
As an example the test
tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON
fails because it requests to plug a vif, and send request to neutron,
which responds in more than neutron_url_timeout, and since the option
vif_plugging_is_fatal is set to True as default, the test fails.
Shortly thereafter, checking in neutron log you can see the request,
returning with the proper status, after more than neutron_url_timeout,
however, it's already too late once nova already marked the instance
with error status, and so the test fails.
Closes-Bug: #1641135
Change-Id: If0991c114f199490ac0deb71eb569a42d4711359
(cherry picked from commit c99c48b84e
)
19 lines
398 B
YAML
19 lines
398 B
YAML
# Lower the memory usage of overcloud.
|
|
parameter_defaults:
|
|
CeilometerWorkers: 1
|
|
CinderWorkers: 1
|
|
GlanceWorkers: 1
|
|
HeatWorkers: 1
|
|
KeystoneWorkers: 1
|
|
NeutronWorkers: 1
|
|
NovaWorkers: 1
|
|
SaharaWorkers: 1
|
|
SwiftWorkers: 1
|
|
GnocchiMetricdWorkers: 1
|
|
|
|
ApacheMaxRequestWorkers: 32
|
|
ApacheServerLimit: 32
|
|
|
|
ControllerExtraConfig:
|
|
'nova::network::neutron::neutron_url_timeout': '60'
|