Replace default cinder endpoint type

The default cinder endpoint type is publicURL in cinderclient.
This patch replaces default cinder endpoint type from
internalURL to publicURL.

Change-Id: Ie6951086e4656bd83195dab151dbaaf948113a7c
Related-Bug: #1686298
This commit is contained in:
Hidekazu Nakamura
2017-05-31 14:59:04 +09:00
parent bd8151e581
commit 7b766680b0
2 changed files with 5 additions and 4 deletions

View File

@@ -26,10 +26,10 @@ CINDER_CLIENT_OPTS = [
default='3',
help='Version of Cinder API to use in cinderclient.'),
cfg.StrOpt('endpoint_type',
default='internalURL',
default='publicURL',
help='Type of endpoint to use in cinderclient.'
'Supported values: internalURL, publicURL, adminURL'
'The default is internalURL.')]
'The default is publicURL.')]
def register_opts(conf):