From f45c9eaf089983dc8820cf0f10aa99ef0115835f Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Wed, 13 Nov 2013 15:58:55 -0500 Subject: python-heat: update heat.conf with keystone authentication information The authentication information was in the wrong section of the .conf file, which mean that the stack api was not able to properly authenticate. Creating a new keystone section fixes the problem and we can now manipulate stacks. Signed-off-by: Bruce Ashfield --- .../recipes-devtools/python/python-heat/heat.conf | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'meta-openstack/recipes-devtools/python/python-heat') diff --git a/meta-openstack/recipes-devtools/python/python-heat/heat.conf b/meta-openstack/recipes-devtools/python/python-heat/heat.conf index 2ff8adb..da72987 100644 --- a/meta-openstack/recipes-devtools/python/python-heat/heat.conf +++ b/meta-openstack/recipes-devtools/python/python-heat/heat.conf @@ -4,10 +4,6 @@ # Options defined in heat.common.config # -admin_tenant_name = %SERVICE_TENANT_NAME% -admin_user = heat -admin_password = %ADMIN_PASSWORD% - # The SQLAlchemy connection string used to connect to the # database (string value) #sql_connection=mysql://heat:heat@localhost/heat @@ -728,4 +724,13 @@ sql_connection=postgresql://%DB_USER%:%DB_PASSWORD%@localhost/heat # Password for Redis server. (optional) (string value) #password= +[keystone_authtoken] +auth_host = %CONTROLLER_IP% +auth_port = 35357 +auth_protocol = http +auth_uri = http://%CONTROLLER_IP%:5000/v2.0 + +admin_tenant_name = %SERVICE_TENANT_NAME% +admin_user = heat +admin_password = %ADMIN_PASSWORD% -- cgit v1.2.3-54-g00ecf