From f06d4d9f29845c8bcc943bbc94a11ae6e6fbe1f7 Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Tue, 9 Oct 2012 22:34:53 -0700 Subject: [PATCH] add keystone_host to the controller for the case where they are not installed on the same machine. --- manifests/nova/controller.pp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/manifests/nova/controller.pp b/manifests/nova/controller.pp index 0e15f35..667a8be 100644 --- a/manifests/nova/controller.pp +++ b/manifests/nova/controller.pp @@ -54,6 +54,7 @@ class openstack::nova::controller ( # VNC $vnc_enabled = true, # General + $keystone_host = '127.0.0.1', $verbose = 'False', $enabled = true, $exported_resources = true @@ -111,8 +112,9 @@ class openstack::nova::controller ( # Configure nova-api class { 'nova::api': - enabled => $enabled, - admin_password => $nova_user_password, + enabled => $enabled, + admin_password => $nova_user_password, + auth_host => $keystone_host, } # Configure nova-network