From 5b5dbb538bfcf96ebc8220f26a39258735f2b03c Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Mon, 7 Mar 2016 16:01:20 -0500 Subject: [PATCH] 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 --- manifests/nova.pp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/manifests/nova.pp b/manifests/nova.pp index 098d7558e..8d59e7bf4 100644 --- a/manifests/nova.pp +++ b/manifests/nova.pp @@ -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': }