Merge "Checks for heat_user_domain explicitly" into stable/ussuri

This commit is contained in:
Zuul 2020-10-16 19:34:48 +00:00 committed by Gerrit Code Review
commit 85489034c0
1 changed files with 4 additions and 2 deletions

View File

@ -4,13 +4,15 @@
# of the KOLLA_BOOTSTRAP variable being set, including empty.
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
heat-manage db_sync
CURRENT_HEAT_DOMAIN_NAME=$(openstack domain list | grep heat | awk '{print $4}')
if [[ "heat_user_domain" != "$CURRENT_HEAT_DOMAIN_NAME" ]]; then
EXISTING_DOMAINS=$(openstack domain list -f value -c Name)
if ! echo "$EXISTING_DOMAINS" | grep '^heat_user_domain$' &>/dev/null; then
openstack domain create heat_user_domain
openstack user create --domain heat_user_domain heat_domain_admin --password ${HEAT_DOMAIN_ADMIN_PASSWORD}
openstack role add --domain heat_user_domain --user-domain heat_user_domain --user heat_domain_admin admin
fi
exit 0
fi