I had a same problem and I found this solutions as workaround, during I
can not receive the script with the new release ( temporary solution).

Solution source: https://github.com/MarouenMechtri/OpenStack-Heat-
Installation/blob/master/OpenStack-Heat-Installation.rst

I modified the it a little bit because the keystone token-get command is not 
working me under Juno.
I used  "openstack token issue" instead of "keystone token-get"

Create heat domain:

source admin-openrc.sh

OS_TOKEN=$(openstack token issue |awk "/ id / { print \$4}")

KEYSTONE_ENDPOINT_V3=http://controller:5000/v3

HEAT_DOMAIN_ID=$(openstack --os-token $OS_TOKEN --os-url=$KEYSTONE_ENDPOINT_V3 \
--os-identity-api-version=3 domain create heat \
--description "Owns users and projects created by heat" | grep ' id ' | awk "{ 
print \$4}")

Create the heat_domain_admin user:

openstack --os-token $OS_TOKEN --os-url=$KEYSTONE_ENDPOINT_V3 \
--os-identity-api-version=3 user create --password service_pass \
--domain $HEAT_DOMAIN_ID heat_domain_admin \
--description "Manages users and projects created by heat"

openstack --os-token $OS_TOKEN --os-url=$KEYSTONE_ENDPOINT_V3 \
--os-identity-api-version=3 role add --user heat_domain_admin \
--domain $HEAT_DOMAIN_ID admin

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453160

Title:
  [SRU] missing binaries in Ubuntu heat packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/openstack-manuals/+bug/1453160/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to