6d9cf739ca
Relates-to: blueprint kolla-ssl Change-Id: Id82d22c2195be5d897c781f28087a1ea422b8bea
50 lines
1.7 KiB
Plaintext
50 lines
1.7 KiB
Plaintext
# You can customize this to match your environment by replacing the variables:
|
|
# keystone_admin_password
|
|
# kolla_internal_fqdn
|
|
# keystone_admin_port
|
|
|
|
export OS_PROJECT_DOMAIN_ID=default
|
|
export OS_USER_DOMAIN_ID=default
|
|
export OS_PROJECT_NAME=admin
|
|
export OS_USERNAME=admin
|
|
export OS_PASSWORD=<keystone_admin_password>
|
|
export OS_AUTH_URL=http://<kolla_internal_fqdn>:<keystone_admin_port>
|
|
export OS_IDENTITY_API_VERSION=3
|
|
|
|
|
|
# If you want to connect to the public endpoints of OpenStack
|
|
# you can create an openrc by replacing these variables. You
|
|
# can also replace the admin username and password with those
|
|
# of another user.
|
|
# keystone_admin_password
|
|
# kolla_external_fqdn
|
|
# keystone_public_port
|
|
|
|
export OS_PROJECT_DOMAIN_ID=default
|
|
export OS_USER_DOMAIN_ID=default
|
|
export OS_PROJECT_NAME=admin
|
|
export OS_USERNAME=admin
|
|
export OS_PASSWORD=<keystone_admin_password>
|
|
export OS_AUTH_URL=http://<kolla_external_fqdn>:<keystone_public_port>
|
|
export OS_IDENTITY_API_VERSION=3
|
|
|
|
|
|
# When you have enabled TLS on the external network of kolla,
|
|
# if you want to connect to the public endpoints of OpenStack
|
|
# you can create an openrc by replacing these variables. You
|
|
# can also replace the admin username and password with those
|
|
# of another user.
|
|
# keystone_admin_password
|
|
# kolla_external_fqdn
|
|
# keystone_public_port
|
|
# path_to_kolla_external_cacert
|
|
|
|
export OS_PROJECT_DOMAIN_ID=default
|
|
export OS_USER_DOMAIN_ID=default
|
|
export OS_PROJECT_NAME=admin
|
|
export OS_USERNAME=admin
|
|
export OS_PASSWORD=<keystone_admin_password>
|
|
export OS_AUTH_URL=https://<kolla_external_fqdn>:<keystone_public_port>
|
|
export OS_CACERT=<path_to_kolla_external_cacert>
|
|
export OS_IDENTITY_API_VERSION=3
|