diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-02-09 21:17:54 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-02-09 21:17:54 +0000 |
commit | a56459e2e172b1ca536c95a15c2d793b532c09ed (patch) | |
tree | 3d89bf43accc1fbb4d4bbc7f3bb469c123f3929b | |
parent | 3b00ffc728b47e132b3ed8bc460f8697ddb32047 (diff) | |
parent | f7087b895a21f73664ae9538e367c8cb95ec10f2 (diff) |
Merge "nova: disable API in WSGI by default"
-rw-r--r-- | manifests/profile/base/nova/api.pp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/profile/base/nova/api.pp b/manifests/profile/base/nova/api.pp index 99911d2..b039506 100644 --- a/manifests/profile/base/nova/api.pp +++ b/manifests/profile/base/nova/api.pp @@ -90,7 +90,9 @@ class tripleo::profile::base::nova::api ( sync_db => $sync_db, sync_db_api => $sync_db, } - if hiera('nova_wsgi_enabled', true) { + # Temporarily disable Nova API deployed in WSGI + # https://bugs.launchpad.net/nova/+bug/1661360 + if hiera('nova_wsgi_enabled', false) { if $enable_internal_tls { if $generate_service_certificates { ensure_resources('tripleo::certmonger::httpd', $certificates_specs) |