From 40c6920a33499b3f3bca3fcba17f7b3966e7da5b Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Wed, 25 Oct 2017 15:37:11 +0800 Subject: Add health check by API of GET keystone url make it easy for DCAE to check MC health state Change-Id: I99766e309f8ddff11a0fa82ea648ec1b8a7ee75a Issue-Id: MULTICLOUD-106 Signed-off-by: Bin Yang --- ocata/ocata/proxy/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ocata') diff --git a/ocata/ocata/proxy/urls.py b/ocata/ocata/proxy/urls.py index 34b84728..ad0bb2cc 100644 --- a/ocata/ocata/proxy/urls.py +++ b/ocata/ocata/proxy/urls.py @@ -24,6 +24,8 @@ urlpatterns = [ # identityV2.Tokens.as_view()), url(r'^identity/v3/auth/tokens/?$', identityV3.Tokens.as_view()), + url(r'^identity/v3/?$', + identityV3.Tokens.as_view()), url(r'^identity/v2.0/?', identityV3.TokensV2.as_view()), url(r'^identity/v2.0/tokens/?$', -- cgit 1.2.3-korg