Modify examples to use v3 URLs

The bootstrap command has help that still lists v2.0 as example URLs
for endpoints. Since v2 has been deprecated for a long time, the
examples should really use v3 nowadays.

Change-Id: Ie4d78c5213fbb7dcfde14977c3600c1625ab1694
This commit is contained in:
Eric Brown 2017-03-02 12:55:50 -08:00
parent a103486efe
commit 6c6bedb255
1 changed files with 3 additions and 3 deletions

View File

@ -109,17 +109,17 @@ class BootStrap(BaseApp):
metavar='OS_BOOTSTRAP_ADMIN_URL',
help=('The initial identity admin url created '
'during the keystone bootstrap process. '
'e.g. http://127.0.0.1:35357/v2.0'))
'e.g. http://127.0.0.1:35357/v3'))
parser.add_argument('--bootstrap-public-url',
metavar='OS_BOOTSTRAP_PUBLIC_URL',
help=('The initial identity public url created '
'during the keystone bootstrap process. '
'e.g. http://127.0.0.1:5000/v2.0'))
'e.g. http://127.0.0.1:5000/v3'))
parser.add_argument('--bootstrap-internal-url',
metavar='OS_BOOTSTRAP_INTERNAL_URL',
help=('The initial identity internal url created '
'during the keystone bootstrap process. '
'e.g. http://127.0.0.1:5000/v2.0'))
'e.g. http://127.0.0.1:5000/v3'))
parser.add_argument('--bootstrap-region-id',
metavar='OS_BOOTSTRAP_REGION_ID',
help=('The initial region_id endpoints will be '