Comment 0 for bug 1709930

Revision history for this message
VinceLe (legoll) wrote :

-----------------------------------
Release: 2.13.1.dev15 on 2017-05-30 23:58
SHA: 72ed8f23a78f11e1ca1688ba086590bb7062a8c7
Source: https://git.openstack.org/cgit/openstack/swift/tree/install-guide/source/controller-install-rdo.rst
URL: https://docs.openstack.org/project-install-guide/object-storage/ocata/controller-install-rdo.html
-----------------------------------

There are discrepancies (I think) about the usage of "tenant" vs "project" in the endpoint creation examples.

Here "%(project_id)s" is used:
-----------------------------------
https://docs.openstack.org/ocata/install-guide-rdo/cinder-controller-install.html

4. Create the Block Storage service API endpoints:

$ openstack endpoint create --region RegionOne \
  volumev2 public http://controller:8776/v2/%\(project_id\)s
-----------------------------------

Whereas "%(tenant_id)s" is used there:
-----------------------------------
https://docs.openstack.org/project-install-guide/object-storage/ocata/controller-install-rdo.html

3. Create the Object Storage service API endpoints:

$ openstack endpoint create --region RegionOne \
  object-store public http://controller:8080/v1/AUTH_%\(tenant_id\)s
-----------------------------------

Maybe this is working, maybe not (I've not tested) but the discrepancy need to be either explained in notes or changed so that all places use the same string sustitution patterns.

I've only looked at those two instances there may be more similar examples...