aboutsummaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorEmilien Macchi <emilien@redhat.com>2017-02-03 11:36:00 -0500
committerEmilien Macchi <emilien@redhat.com>2017-02-09 05:10:41 +0000
commitf7087b895a21f73664ae9538e367c8cb95ec10f2 (patch)
treea0d6a172b1f2a0d85095340a1b1512dd8fe58fa5 /manifests
parent40f12b482d0b514ee05c898bc04c0ca0628c8692 (diff)
nova: disable API in WSGI by default
Cleanup patch once the THT patch is merged. Change-Id: Iba439a4758a4728197d7620b764a4f0f2648ee0f Depends-On: I09b73476762593642a0e011f83f0233de68f2c33
Diffstat (limited to 'manifests')
-rw-r--r--manifests/profile/base/nova/api.pp4
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)