diff options
Diffstat (limited to 'tools/keystone/endpoint.sh')
-rwxr-xr-x | tools/keystone/endpoint.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/keystone/endpoint.sh b/tools/keystone/endpoint.sh index b79638f..1bb6c9b 100755 --- a/tools/keystone/endpoint.sh +++ b/tools/keystone/endpoint.sh @@ -16,9 +16,8 @@ set -o pipefail # Ensure that openrc containing OpenStack environment variables is present. source openrc -# if running as part of Jenkins job, create the file in WORKSPACE -WORKSPACE=${WORKSPACE:-/root} -ENDPOINT_FILE="${WORKSPACE}/endpoints.ini" +# Always executed on controller +ENDPOINT_FILE="/root/endpoints.ini" # Endpoints. Dynamically get IP addresses from another service (keystone) ENDPOINT_PUBLIC_URL=$(openstack endpoint list | grep keystone | grep public | cut -d '|' -f 8 | cut -d '/' -f 3 | cut -d ':' -f 1) |