Browse code

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

Matt Riedemann authored on 2016/07/16 11:53:17
Showing 1 changed files
... ...
@@ -57,7 +57,7 @@ GLANCE_SCHEMA_JSON=$GLANCE_CONF_DIR/schema-image.json
57 57
 GLANCE_SWIFT_STORE_CONF=$GLANCE_CONF_DIR/glance-swift-store.conf
58 58
 GLANCE_GLARE_CONF=$GLANCE_CONF_DIR/glance-glare.conf
59 59
 GLANCE_GLARE_PASTE_INI=$GLANCE_CONF_DIR/glance-glare-paste.ini
60
-GLANCE_V1_ENABLED=${GLANCE_V1_ENABLED:-True}
60
+GLANCE_V1_ENABLED=${GLANCE_V1_ENABLED:-False}
61 61
 
62 62
 if is_ssl_enabled_service "glance" || is_service_enabled tls-proxy; then
63 63
     GLANCE_SERVICE_PROTOCOL="https"