aboutsummaryrefslogtreecommitdiffstats
path: root/catalog/pub/config/config.py
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2020-02-17 15:34:41 +0800
committeryangyan <yangyanyj@chinamobile.com>2020-02-17 15:58:03 +0800
commite18077f2ace1f788c640909ae63c0b2961ce3356 (patch)
tree29b69662297a722a276e7375e89794b07e5e1c64 /catalog/pub/config/config.py
parent99331f278095ca155313ab37a05c7787f5bf482c (diff)
Modify the request by msb with https
Change-Id: I4109664b6b6058d2d4b945c58a7d0c51facb1309 Issue-ID: VFC-1602 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'catalog/pub/config/config.py')
-rw-r--r--catalog/pub/config/config.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/catalog/pub/config/config.py b/catalog/pub/config/config.py
index 1c6afb62..077ce0d1 100644
--- a/catalog/pub/config/config.py
+++ b/catalog/pub/config/config.py
@@ -13,8 +13,11 @@
# limitations under the License.
# [MSB]
+
+MSB_SERVICE_PROTOCOL = 'http'
MSB_SERVICE_IP = '127.0.0.1'
MSB_SERVICE_PORT = '443'
+MSB_BASE_URL = "%s://%s:%s" % (MSB_SERVICE_PROTOCOL, MSB_SERVICE_IP, MSB_SERVICE_PORT)
# [REDIS]
REDIS_HOST = '127.0.0.1'
@@ -83,4 +86,10 @@ SDC_BASE_URL = "http://msb-iag/api"
SDC_USER = "aai"
SDC_PASSWD = "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
+# [aai config]
+AAI_BASE_URL = "http://10.0.14.1:80/aai/v11"
+AAI_USER = "AAI"
+AAI_PASSWD = "AAI"
+REPORT_TO_AAI = True
+
VNFD_SCHEMA_VERSION_DEFAULT = "base"