Deploy Nova API in WSGI with Apache

Move Nova API under WSGI process with Apache.
So later, we'll be able to easily enable SSL for Nova API.

Depends-On: I3a7c6af2d81da28e41ee278f11937364536efd9e
Change-Id: I1bd2ad0510090dbcebd046fe188f51369d0e260a
This commit is contained in:
Emilien Macchi 2016-03-07 16:01:20 -05:00
parent 904928073b
commit 5b5dbb538b

@ -53,10 +53,15 @@ class openstack_integration::nova (
identity_uri => 'http://127.0.0.1:35357/',
osapi_v3 => true,
neutron_metadata_proxy_shared_secret => 'a_big_secret',
osapi_compute_workers => 2,
metadata_workers => 2,
default_floating_pool => 'public',
sync_db_api => true,
service_name => 'httpd',
}
include ::apache
class { '::nova::wsgi::apache':
ssl => false,
workers => '2',
}
class { '::nova::client': }
class { '::nova::conductor': }