From 89c74fce558871b8e22b6aa85ea808284f609a6b Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Mon, 22 Feb 2016 18:19:11 -0500 Subject: [PATCH] nova: specify glance url proto If we don't specify the proto, nova-api sends a nice warning about that: No protocol specified in for api_server 'http://localhost:9292'please update [glance] api_servers with fully qualified url including scheme (http / https). Change-Id: Iee5c3a7312954259d75c1125c07ac79bd9bbb1b4 --- manifests/nova.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/nova.pp b/manifests/nova.pp index 8d7e15b3a..5add8ce3a 100644 --- a/manifests/nova.pp +++ b/manifests/nova.pp @@ -29,7 +29,7 @@ class openstack_integration::nova { rabbit_host => '127.0.0.1', rabbit_userid => 'nova', rabbit_password => 'an_even_bigger_secret', - glance_api_servers => 'localhost:9292', + glance_api_servers => 'http://127.0.0.1:9292', verbose => true, debug => true, notification_driver => 'messagingv2',