summaryrefslogtreecommitdiffstats
path: root/newton
diff options
context:
space:
mode:
authorYun Huang <yun.huang@windriver.com>2018-04-20 11:35:48 +0800
committerYun Huang <yun.huang@windriver.com>2018-04-20 11:35:48 +0800
commit1693db50f77d4b904ffe69ee7acb7ddc87ddb28b (patch)
treed42e19d136b39b40002ecf50785e3e7fb0ac972a /newton
parent2213d20964890593e2e72d2c827e4c6a827c4e69 (diff)
Update AAI schema version for newton
Change-Id: I47f4ac4ff08408a6a78181391c7f05fa4eaf48e5 Issue-ID: MULTICLOUD-179 Signed-off-by: Yun Huang <yun.huang@windriver.com>
Diffstat (limited to 'newton')
-rw-r--r--newton/docker/Dockerfile2
-rw-r--r--newton/newton/settings.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/newton/docker/Dockerfile b/newton/docker/Dockerfile
index fb624cd4..83610a4f 100644
--- a/newton/docker/Dockerfile
+++ b/newton/docker/Dockerfile
@@ -10,7 +10,7 @@ ENV MSB_ADDR "127.0.0.1"
ENV MSB_PORT "80"
ENV AAI_ADDR "aai.api.simpledemo.openecomp.org"
ENV AAI_PORT "8443"
-ENV AAI_SCHEMA_VERSION "v11"
+ENV AAI_SCHEMA_VERSION "v13"
ENV AAI_USERNAME "AAI"
ENV AAI_PASSWORD "AAI"
diff --git a/newton/newton/settings.py b/newton/newton/settings.py
index bb7bd042..a3fb9b41 100644
--- a/newton/newton/settings.py
+++ b/newton/newton/settings.py
@@ -107,7 +107,7 @@ MULTICLOUD_PREFIX = "http://%s:%s/api/multicloud-newton/v0" % (
AAI_ADDR = os.environ.get('AAI_ADDR', "aai.api.simpledemo.openecomp.org")
AAI_PORT = os.environ.get('AAI_PORT', "8443")
AAI_SERVICE_URL = 'https://%s:%s/aai' % (AAI_ADDR, AAI_PORT)
-AAI_SCHEMA_VERSION = os.environ.get('AAI_SCHEMA_VERSION', "v11")
+AAI_SCHEMA_VERSION = os.environ.get('AAI_SCHEMA_VERSION', "v13")
AAI_USERNAME = os.environ.get('AAI_USERNAME', "AAI")
AAI_PASSWORD = os.environ.get('AAI_PASSWORD', "AAI")