Bug 1013923

Summary: tempest smoke test test_resize_server_confirm ERRORs in an AIO install with neutron and PROVISION_DEMO enabled
Product: [Community] RDO Reporter: Sunil Thaha <sthaha>
Component: openstack-packstackAssignee: RHOS Maint <rhos-maint>
Status: CLOSED NOTABUG QA Contact: Ami Jeain <ajeain>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: unspecifiedCC: aortega, derekh, mmagr, yeylon
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of:
: 1015101 (view as bug list) Environment:
Last Closed: 2014-02-10 10:46:20 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On: 1015101    
Bug Blocks:    

Description Sunil Thaha 2013-10-01 04:35:27 UTC
Running tempest smoke-tests against the AIO install with Neutron and Provision-Demo enabled, results in resize-test[1] failing.



Packstack version: openstack-packstack-2013.2.1-0.10.dev763.el6.noarch from RDO stage

Setup:
  packstack --allinone
  CONFIG_NEUTRON_INSTALL=y
  CONFIG_PROVISION_DEMO=y
  CONFIG_PROVISION_TEMPEST=y

[1] tempest.api.compute.servers.test_server_actions.ServerActionsTest{JSON,XML}.test_resize_server_confirm

Comment 1 Sunil Thaha 2013-10-01 04:41:37 UTC
Tried setting these 

  openstack-config --set /etc/nova/nova.conf DEFAULT allow_resize_to_same_host true
  openstack-config --set /etc/nova/api-paste.ini filter:ratelimit limits \
  '(POST, "*", .*, 1000, MINUTE); \
  (GET, "*", .*, 10000, MINUTE); \
  (DELETE, "*", .*, 1000, MINUTE); \
  (PUT, "*", .*, 1000, MINUTE)'

  service openstack-nova-api restart

but the test fails even after this.


diff etc/nova/api-paste.ini
@@ -86,6 +86,10 @@ paste.filter_factory = nova.api.openstack.auth:NoAuthMiddlewareV3.factory
 
 [filter:ratelimit]
 paste.filter_factory = nova.api.openstack.compute.limits:RateLimitingMiddleware.factory
+limits = (POST, "*", .*, 1000, MINUTE); \
+          (GET, "*", .*, 10000, MINUTE); \
+          (DELETE, "*", .*, 1000, MINUTE); \
+          (PUT, "*", .*, 1000, MINUTE)
 
 [filter:ratelimit_v3]
 paste.filter_factory = nova.api.openstack.compute.plugins.v3.limits:RateLimitingMiddleware.factory

diff /etc/nova/nova.conf

@@ -2603,6 +2603,7 @@ qpid_reconnect_interval_max=0
 qpid_reconnect_limit=0
 osapi_volume_listen=0.0.0.0
 connection_type=libvirt
+allow_resize_to_same_host = true

Comment 2 Martin Magr 2014-01-15 12:38:03 UTC
Sunil can you give up more information what exactly is wrong? I'm not sure if this is installation problem.