diff options
author | Yun Huang <yun.huang@windriver.com> | 2018-06-12 17:15:08 +0800 |
---|---|---|
committer | Yun Huang <yun.huang@windriver.com> | 2018-06-12 17:23:58 +0800 |
commit | e49ce24667ac548293c517d3025bedd42fc830a6 (patch) | |
tree | e0845972da12f291347babe65989c7f471d69a55 /ocata | |
parent | 7f0e833aa5a05b4004fa29b8feb9e862c9a12257 (diff) |
Provide default value for AAI_SERVICE_URL
In the MultiCloud HPA CSIT, the setup.sh script requires to control
the value of AAI_SERVICE_URL in order to avoid the use of certificates.
when AAI_SERVICE_URL not be set by CSIT, the system need to provide
a default value.
Change-Id: I70dd7074162f75d2d26aa6580da454ea369910ce
Issue-ID: MULTICLOUD-244
Signed-off-by: Yun Huang <yun.huang@windriver.com>
Diffstat (limited to 'ocata')
-rw-r--r-- | ocata/ocata/settings.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ocata/ocata/settings.py b/ocata/ocata/settings.py index 79344374..f9f040ba 100644 --- a/ocata/ocata/settings.py +++ b/ocata/ocata/settings.py @@ -100,7 +100,11 @@ MULTICLOUD_PREFIX = "http://%s:%s/api/multicloud-ocata/v0" % ( # [A&AI] AAI_ADDR = os.environ.get('AAI_ADDR', "aai.api.simpledemo.openecomp.org") AAI_PORT = os.environ.get('AAI_PORT', "8443") -AAI_SERVICE_URL = os.environ.get('AAI_SERVICE_URL', 'https://%s:%s/aai' % (AAI_ADDR, AAI_PORT)) + +AAI_SERVICE_URL = os.environ.get('AAI_SERVICE_URL', "") +if AAI_SERVICE_URL == "": + AAI_SERVICE_URL = 'https://%s:%s/aai' % (AAI_ADDR, AAI_PORT) + 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") |