openrc: Group auth-related options together

Change-Id: I98f283b33c2350cc4388463571013896086b31fa
Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
This commit is contained in:
Stephen Finucane 2024-05-28 13:33:32 +01:00
parent 608489cd59
commit 9fff87fbc7

14
openrc
View File

@ -32,18 +32,11 @@ fi
# Get some necessary configuration # Get some necessary configuration
source $RC_DIR/lib/tls source $RC_DIR/lib/tls
# The OpenStack ecosystem has standardized the term **project** as the # Minimal configuration
# entity that owns resources. export OS_AUTH_TYPE=password
export OS_PROJECT_NAME=${OS_PROJECT_NAME:-demo} export OS_PROJECT_NAME=${OS_PROJECT_NAME:-demo}
# In addition to the owning entity (project), nova stores the entity performing
# the action as the **user**.
export OS_USERNAME=${OS_USERNAME:-demo} export OS_USERNAME=${OS_USERNAME:-demo}
# With Keystone you pass the keystone password instead of an api key.
export OS_PASSWORD=${ADMIN_PASSWORD:-secret} export OS_PASSWORD=${ADMIN_PASSWORD:-secret}
# Region
export OS_REGION_NAME=${REGION_NAME:-RegionOne} export OS_REGION_NAME=${REGION_NAME:-RegionOne}
# Set the host API endpoint. This will default to HOST_IP if SERVICE_IP_VERSION # Set the host API endpoint. This will default to HOST_IP if SERVICE_IP_VERSION
@ -65,9 +58,6 @@ fi
# Identity API version # Identity API version
export OS_IDENTITY_API_VERSION=3 export OS_IDENTITY_API_VERSION=3
# Ask keystoneauth1 to use keystone
export OS_AUTH_TYPE=password
# Authenticating against an OpenStack cloud using Keystone returns a **Token** # Authenticating against an OpenStack cloud using Keystone returns a **Token**
# and **Service Catalog**. The catalog contains the endpoints for all services # and **Service Catalog**. The catalog contains the endpoints for all services
# the user/project has access to - including nova, glance, keystone, swift, ... # the user/project has access to - including nova, glance, keystone, swift, ...