Skip to content

Commit 6eb1551

Browse files
committed
Use identity auth v3 the README examples
Identity auth v3 is the default in devstack. The keystone team advertises all deployments to migrate over to v3. If we get our examples to use v3, that would be a great help. Change-Id: I8bd4cbf16cd42fa1654776f19bf113e3c94e25cf
1 parent 7653cff commit 6eb1551

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,21 @@ options as listed in http://docs.openstack.org/developer/python-openstackclient
8484
Authentication using username/password is most commonly used::
8585

8686
export OS_AUTH_URL=<url-to-openstack-identity>
87+
export OS_IDENTITY_API_VERSION=3
8788
export OS_PROJECT_NAME=<project-name>
89+
export OS_PROJECT_DOMAIN_NAME=<project-domain-name>
8890
export OS_USERNAME=<username>
91+
export OS_USER_DOMAIN_NAME=<user-domain-name>
8992
export OS_PASSWORD=<password> # (optional)
9093

9194
The corresponding command-line options look very similar::
9295

9396
--os-auth-url <url>
97+
--os-identity-api-version 3
9498
--os-project-name <project-name>
99+
--os-project-domain-name <project-domain-name>
95100
--os-username <username>
101+
--os-user-domain-name <user-domain-name>
96102
[--os-password <password>]
97103

98104
If a password is not provided above (in plaintext), you will be interactively

0 commit comments

Comments
 (0)