X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Flcm%2Fpub%2Fconfig%2Fconfig.py;h=b153aee8019d0254f89f8ee963beb91255578f34;hb=332d5d1e96b43d7dcf107a33e0f6d74ec08f1c3f;hp=b965ae8977f1cd415051d3c5e54d32fddce62a1a;hpb=098b7e99394fcbaaff005239a2143836c02b03e0;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/lcm/pub/config/config.py b/lcm/lcm/pub/config/config.py index b965ae89..b153aee8 100644 --- a/lcm/lcm/pub/config/config.py +++ b/lcm/lcm/pub/config/config.py @@ -11,11 +11,12 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -import os # [MSB] +MSB_SERVICE_PROTOCOL = 'https' MSB_SERVICE_IP = '127.0.0.1' -MSB_SERVICE_PORT = '80' +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' @@ -29,6 +30,16 @@ DB_NAME = "gvnfm" DB_USER = "gvnfm" DB_PASSWD = "gvnfm" +# [MDC] +SERVICE_NAME = "vnflcm" +FORWARDED_FOR_FIELDS = ["HTTP_X_FORWARDED_FOR", "HTTP_X_FORWARDED_HOST", + "HTTP_X_FORWARDED_SERVER"] + +# [aai config] +AAI_BASE_URL = "http://127.0.0.1:80/aai/v13" +AAI_USER = "AAI" +AAI_PASSWD = "AAI" + # [register] REG_TO_MSB_WHEN_START = True REG_TO_MSB_REG_URL = "/api/microservices/v1/services" @@ -44,3 +55,4 @@ REG_TO_MSB_REG_PARAM = { "ttl": 0 }] } +MSB_SVC_URL = "/api/microservices/v1/services/vnflcm/version/v1"