Add health check by API of GET keystone url 05/20505/1
authorBin Yang <bin.yang@windriver.com>
Wed, 25 Oct 2017 07:37:11 +0000 (15:37 +0800)
committerBin Yang <bin.yang@windriver.com>
Wed, 25 Oct 2017 07:37:11 +0000 (15:37 +0800)
make it easy for DCAE to check MC health state

Change-Id: I99766e309f8ddff11a0fa82ea648ec1b8a7ee75a
Issue-Id: MULTICLOUD-106
Signed-off-by: Bin Yang <bin.yang@windriver.com>
ocata/ocata/proxy/urls.py
windriver/titanium_cloud/proxy/urls.py

index 34b8472..ad0bb2c 100644 (file)
@@ -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/?$',
index eaa5600..dd35393 100644 (file)
@@ -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/?$',