From 416e8c395c9e91316d7db3d5e2561c12f91bf4b5 Mon Sep 17 00:00:00 2001 From: Dheeraj Gautam Date: Thu, 16 Feb 2017 22:20:36 -0800 Subject: [PATCH] fix liberty vm launch Closes-Bug: #1663866 launching vm was failing for authentication. Change-Id: I275bb133563489ad10ace276ad926ad9d489b589 --- .../modules/contrail/manifests/profile/openstack/nova.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrail/environment/modules/contrail/manifests/profile/openstack/nova.pp b/contrail/environment/modules/contrail/manifests/profile/openstack/nova.pp index 086fb59c..df8ffe71 100644 --- a/contrail/environment/modules/contrail/manifests/profile/openstack/nova.pp +++ b/contrail/environment/modules/contrail/manifests/profile/openstack/nova.pp @@ -202,6 +202,10 @@ 'DEFAULT/rabbit_max_retries': value => '0'; 'DEFAULT/rabbit_interval': value => '15'; 'DEFAULT/pool_timeout': value => '120'; + 'neutron/username': value => 'neutron'; + 'neutron/password': value => $neutron_password; + 'neutron/auth_plugin': value => 'password'; + 'neutron/auth_url': value => "http://${keystone_ip_to_use}:5000/"; 'database/min_pool_size': value => '100'; 'database/max_pool_size': value => '350'; 'database/max_overflow': value => '700';