From 80e82eac4cd127a68fceea37270d09f9cbd71c75 Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Fri, 15 Jul 2016 22:53:17 -0400 Subject: [PATCH] Disable glance v1 by default Nova has been supporting glance v2 since Newton and removed support for glance v1 in Ocata: 97e7b97210139a7f7888f0d6901e499664de02a3 We should disable glance v1 by default because there are several test paths in Tempest which don't get run when glance v1 is available because it uses glance v1 rather than v2. Depends-On: I54db379f6fbe859fd9f1b0cdd5b74102539ab265 Change-Id: I7f962a07317cdad917ee896d79e49ee18938d074 --- lib/glance | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/glance b/lib/glance index 58f1deff6f..0077de5e17 100644 --- a/lib/glance +++ b/lib/glance @@ -57,7 +57,7 @@ GLANCE_SCHEMA_JSON=$GLANCE_CONF_DIR/schema-image.json GLANCE_SWIFT_STORE_CONF=$GLANCE_CONF_DIR/glance-swift-store.conf GLANCE_GLARE_CONF=$GLANCE_CONF_DIR/glance-glare.conf GLANCE_GLARE_PASTE_INI=$GLANCE_CONF_DIR/glance-glare-paste.ini -GLANCE_V1_ENABLED=${GLANCE_V1_ENABLED:-True} +GLANCE_V1_ENABLED=${GLANCE_V1_ENABLED:-False} if is_ssl_enabled_service "glance" || is_service_enabled tls-proxy; then GLANCE_SERVICE_PROTOCOL="https"