From 48bb44b9aa52058bc8e97febc2a0fafa5d53624c Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Wed, 29 Aug 2012 08:55:20 -0700 Subject: [PATCH] Drop glance client + keystone config docs The blurb about configuring glance client doesn't belong in the server project documentation. This removes it. Related to bp glance-folsom-docs-cleanup Change-Id: I3932e1af382813bf069f4920218dd60cd04790f5 --- doc/source/authentication.rst | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/doc/source/authentication.rst b/doc/source/authentication.rst index 327b7a8f0f..2e48c7c797 100644 --- a/doc/source/authentication.rst +++ b/doc/source/authentication.rst @@ -116,37 +116,3 @@ configuration file, select the appropriate deployment flavor by adding a which users should be granted admin-level privileges, you must define it in the ``admin_role`` config attribute in both ``glance-registry.conf`` and ``glance-api.conf``. - -Configuring the Glance Client to use Keystone ---------------------------------------------- - -Once the Glance API and Registry servers have been configured to use -Keystone, you will need to configure the Glance client (``bin/glance``) -to use Keystone as well. Like the other OpenStack projects, this is -done through a common set of environment variables. These credentials may -may alternatively be specified using the following switches to -the ``bin/glance`` command: - - OS_USERNAME=, -I , --os_username= - User name used to acquire an authentication token - OS_PASSWORD=, -K , --os_password= - Password used to acquire an authentication token - OS_TENANT_NAME= -T , --os_tenant_name= - Tenant name - OS_AUTH_URL=, -N , --os_auth_url= - Authentication endpoint - OS_REGION_NAME=, -R , --os_region_name= - Used to select a specific region while - authenticating against Keystone - -Or, if a pre-authenticated token is preferred, the following option allows -the client-side interaction with keystone to be bypassed (useful if a long -sequence of commands is being scripted): - - OS_TOKEN=, -A , --os_auth_token= - User's authentication token that identifies the - client to the glance server. This is not - an admin token. - -In general the command line switch takes precedence over the corresponding -OS_* environment variable, if both are set.