Ephemral Heat: Ensure OS_CLOUD is cleared

Recent stackrc uses OS_CLOUD instead of the other OS_* environments and
it should be cleared to use the other OS_* environments.

This also documents usage of OS_CLOUD which would be easier.

Change-Id: I4dfe91b3a487c637f98ad18ea36de49dde4a86cd
This commit is contained in:
Takashi Kajinami 2022-05-23 14:17:23 +09:00
parent 8208c61d62
commit 40110ef4f8
1 changed files with 7 additions and 3 deletions

View File

@ -128,14 +128,18 @@ Interacting with ephemeral Heat
With the ephemeral Heat process launched and running, ``openstackclient`` can be
used to interact with the Heat API. The following shell environment
configuration must be set in order to disable authentication::
configuration must set up access to the Heat API::
unset OS_CLOUD
unset OS_PROJECT_NAME
unset OS_PROJECT_DOMAIN_NAME
unset OS_USER_DOMAIN_NAME
OS_AUTH_TYPE=none
IP=`cat /etc/hosts | grep "undercloud.localdomain undercloud$" | awk '{print $1}'`
OS_ENDPOINT=http://$IP:8006/v1/admin
OS_ENDPOINT=http://127.0.0.1:8006/v1/admin
You can also use the ``OS_CLOUD`` environment to set up the same::
export OS_CLOUD=heat
Once the environment is configured, ``openstackclient`` work as expected
against the Heat API::