lib/cinder: Align endpoint creation code
Do this the same way we do it for Nova, to make for easier review.
Change-Id: I31877705894a21570f130723e0a27ff38f945eea
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
diff --git a/lib/cinder b/lib/cinder
index 6da5d45..dc28492 100644
--- a/lib/cinder
+++ b/lib/cinder
@@ -476,20 +476,19 @@
create_service_user "cinder" $extra_role
- # block-storage is the official service type
- get_or_create_service "cinder" "block-storage" "Cinder Volume Service"
- if [ "$CINDER_USE_MOD_WSGI" == "False" ]; then
- get_or_create_endpoint \
- "block-storage" \
- "$REGION_NAME" \
- "$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT/v3"
+ local cinder_api_url
+ if [[ "$CINDER_USE_MOD_WSGI" == "False" ]]; then
+ cinder_api_url="$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST:$CINDER_SERVICE_PORT"
else
- get_or_create_endpoint \
- "block-storage" \
- "$REGION_NAME" \
- "$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST/volume/v3"
+ cinder_api_url="$CINDER_SERVICE_PROTOCOL://$CINDER_SERVICE_HOST/volume"
fi
+ # block-storage is the official service type
+ get_or_create_service "cinder" "block-storage" "Cinder Volume Service"
+ get_or_create_endpoint \
+ "block-storage" \
+ "$REGION_NAME" \
+ "$cinder_api_url/v3"
configure_cinder_internal_tenant
fi
}