Change the default value of use_public_urls
Change the default value of the use_public_urls configuration option of the ExistingCloud deployment engine to True. Change-Id: I8ccb19fdef7911c2e27145758014e942086bf954
This commit is contained in:
parent
b5028c07d2
commit
b71e389a51
@ -31,7 +31,7 @@ class ExistingCloud(engine.EngineFactory):
|
||||
"password": "password",
|
||||
"tenant_name": "demo",
|
||||
"region_name": "RegionOne",
|
||||
"use_public_urls": False,
|
||||
"use_public_urls": True,
|
||||
"keystone_admin_port": 35357
|
||||
}
|
||||
}
|
||||
@ -73,7 +73,7 @@ class ExistingCloud(engine.EngineFactory):
|
||||
consts.EndpointPermission.ADMIN,
|
||||
endpoint_dict.get('region_name'),
|
||||
endpoint_dict.get('use_public_urls',
|
||||
False),
|
||||
True),
|
||||
endpoint_dict.get('admin_port',
|
||||
35357))
|
||||
return [admin_endpoint]
|
||||
|
@ -33,7 +33,7 @@ class TestExistingCloud(test.TestCase):
|
||||
'password': 'myadminpass',
|
||||
'tenant_name': 'demo',
|
||||
'region_name': 'RegionOne',
|
||||
'use_public_urls': False,
|
||||
'use_public_urls': True,
|
||||
'admin_port': 35357
|
||||
},
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user