Comment 3 for bug 1385025

Revision history for this message
Thiago Martins (martinx) wrote :

Guys,

How to create Keystone v3 Service and Endpoints on Kilo?

This way:

---
openstack service create --name keystonev3 --description "OpenStack Identity v3" identityv3

openstack endpoint create --region RegionOne --publicurl http://controller-1:5000/v3 --internalurl http://controller-1:5000/v3 --adminurl http://controller-1:35357/v3 identityv3
---

Is that right?

Or should I not use so many "v3" suffix? Like for example:

---
openstack service create --name keystone --description "OpenStack Identity" identity

openstack endpoint create --region RegionOne --publicurl http://controller-1:5000/v3 --internalurl http://controller-1:5000/v3 --adminurl http://controller-1:35357/v3 identity
---

???

Thanks!