X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=catalog%2Fpub%2Fconfig%2Fconfig.py;h=c1d469597a240e09839b789436c2cb258b092ab9;hb=25a5b7ae680a120672faae4c2a1381b9e89f2a14;hp=2b8f1a041a3e5a1f7e7b96a21378f8c2e4e9db94;hpb=1f9fde9ca711a6ce22bb4424b8f2667a553a4aa0;p=modeling%2Fetsicatalog.git diff --git a/catalog/pub/config/config.py b/catalog/pub/config/config.py index 2b8f1a0..c1d4695 100644 --- a/catalog/pub/config/config.py +++ b/catalog/pub/config/config.py @@ -32,10 +32,16 @@ FORWARDED_FOR_FIELDS = ["HTTP_X_FORWARDED_FOR", "HTTP_X_FORWARDED_HOST", # [register] REG_TO_MSB_WHEN_START = True +SSL_ENABLED = "true" REG_TO_MSB_REG_URL = "/api/microservices/v1/services" +if SSL_ENABLED == "true": + enable_ssl = "true" +else: + enable_ssl = "false" REG_TO_MSB_REG_PARAM = [{ "serviceName": "catalog", "version": "v1", + "enable_ssl": enable_ssl, "url": "/api/catalog/v1", "protocol": "REST", "visualRange": "1", @@ -47,6 +53,7 @@ REG_TO_MSB_REG_PARAM = [{ }, { "serviceName": "nsd", "version": "v1", + "enable_ssl": enable_ssl, "url": "/api/nsd/v1", "protocol": "REST", "visualRange": "1", @@ -58,6 +65,7 @@ REG_TO_MSB_REG_PARAM = [{ }, { "serviceName": "vnfpkgm", "version": "v1", + "enable_ssl": enable_ssl, "url": "/api/vnfpkgm/v1", "protocol": "REST", "visualRange": "1", @@ -69,6 +77,7 @@ REG_TO_MSB_REG_PARAM = [{ }, { "serviceName": "parser", "version": "v1", + "enable_ssl": enable_ssl, "url": "/api/parser/v1", "protocol": "REST", "visualRange": "1",