Comment 5 for bug 1364463

Revision history for this message
Sergey Kraynev (skraynev) wrote :

To make sure which endpoints are presented you may do follow:

on vm with available v3 keystone:

skr@ubuntu:~$ python
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from keystoneclient.v3 import client
>>> c = client.Client(username='admin', password='horizonpass', auth_url='http://127.0.0.1:5000/v3')
>>> c.auth_ref

For me one of the endpoint looks like:

u'catalog': [{u'endpoints': [{u'id': u'575d32d0acff4edfa4b7f97dcd027e47',
                               u'interface': u'admin',
                               u'region_id': u'RegionOne',
                               u'url': u'http://172.18.76.56:9292'},
                              {u'id': u'9e73ca304dc04ceba2a1b76de0df388a',
                               u'interface': u'internal',
                               u'region_id': u'RegionOne',
                               u'url': u'http://172.18.76.56:9292'},
                              {u'id': u'e004b731bcc243ecad2085871befe735',
                               u'interface': u'public',
                               u'region_id': u'RegionOne',
                               u'url': u'http://172.18.76.56:9292'}],