Added missing 'v1' in rds config file and updated ormcli config

The UUID_URL was missing a 'v1' that was causing an
issue for running rds. Updated ormcli config file
where the base_url is changed.

Change-Id: Ifed2d94332eddd4ca200008ad397bba4c512adb0
This commit is contained in:
raigax9 2017-10-09 10:13:37 -04:00
parent a3eb0387ff
commit a8758bd87f
2 changed files with 2 additions and 2 deletions

View File

@ -6,5 +6,5 @@ tenant_name = config.token_auth_tenant
username = config.token_auth_user username = config.token_auth_user
password = config.token_auth_pass password = config.token_auth_pass
auth_region = config.cli['base_region'] auth_region = config.cli['base_region']
orm_base_url = config.rms['base_url'] orm_base_url = '{}://{}'.format(config.orm_protocal, config.orm_host)
verify = config.ssl_verify verify = config.ssl_verify

View File

@ -59,7 +59,7 @@ ordupdate = {
'cert_path': '../resources/ord.crt' 'cert_path': '../resources/ord.crt'
} }
UUID_URL = config.uuid['base_url'] + 'uuids' UUID_URL = config.uuid['base_url'] + 'v1/uuids'
# yaml configurations # yaml configurations
yaml_configs = { yaml_configs = {