From 0fff6f6fb1aa3bbd5f8e8d4ef18a3bed0b8892a2 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Thu, 27 Apr 2017 18:27:36 -0500 Subject: [PATCH] Use the proper keystone endpoints in clouds.yaml KEYSTONE_SERVICE_API is the keystone endpoint and it is what we should use. The admin url should DIAF - but until it does, it CERTAINLY should not be the thing we put into clouds.yaml. Change-Id: If8196a04f852f633e0b7548793f68c92376aa6da (cherry picked from commit e43f60ba2a3a227918e5fdb652a0adc2643f618d) --- functions-common | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions-common b/functions-common index c43ff3c4ec..22fe9542c6 100644 --- a/functions-common +++ b/functions-common @@ -93,7 +93,7 @@ function write_clouds_yaml { --os-region-name $REGION_NAME \ --os-identity-api-version 3 \ $CA_CERT_ARG \ - --os-auth-url $KEYSTONE_AUTH_URI \ + --os-auth-url $KEYSTONE_SERVICE_URI \ --os-username demo \ --os-password $ADMIN_PASSWORD \ --os-project-name demo @@ -105,7 +105,7 @@ function write_clouds_yaml { --os-region-name $REGION_NAME \ --os-identity-api-version 3 \ $CA_CERT_ARG \ - --os-auth-url $KEYSTONE_AUTH_URI \ + --os-auth-url $KEYSTONE_SERVICE_URI \ --os-username alt_demo \ --os-password $ADMIN_PASSWORD \ --os-project-name alt_demo @@ -117,7 +117,7 @@ function write_clouds_yaml { --os-region-name $REGION_NAME \ --os-identity-api-version 3 \ $CA_CERT_ARG \ - --os-auth-url $KEYSTONE_AUTH_URI \ + --os-auth-url $KEYSTONE_SERVICE_URI \ --os-username admin \ --os-password $ADMIN_PASSWORD \ --os-project-name admin