devstack stop at install tacker-horizon

Asked by wangchenglong

i'm install openstack environment in a single-machine, below is my local.conf.

[[local|localrc]]

GIT_BASE=http://git.trystack.cn
NOVNC_REPO=http://git.trystack.cn/kanaka/noVNC.git
SPICE_REPO=http://git.trystack.cn/git/spice/spice-html5.git

# Logging
LOGFILE=/opt/stack/logs/stack.sh.log
VERBOSE=True
LOG_COLOR=True
SCREEN_LOGDIR=/opt/stack/logs

ADMIN_PASSWORD=admin
DATABASE_PASSWORD=$ADMIN_PASSWORD
RABBIT_PASSWORD=$ADMIN_PASSWORD
SERVICE_PASSWORD=$ADMIN_PASSWORD

disable_service c-sch,c-api,c-vol

enable_plugin heat https://git.openstack.org/openstack/heat master
enable_plugin tacker https://git.openstack.org/openstack/tacker master
enable_plugin networking-sfc https://git.openstack//openstack/networking-sfc master

enable_service n-novnc
enable_service n-cauth

disable_service tempest

#TACKER_MODE=standalone

My issue is that the installation always stop with "2017-01-17 09:24:23.803 | cp: cannot stat '/opt/stack/tacker-horizon/openstack_dashboard_extensions/*': No such file or directory". I remove the tacker-horizon folder, then manually install it via git clone, it does not work.

i have no clue to move forward now, can some one give me any comments here ?

thanks !

Question information

Language:
English Edit question
Status:
Solved
For:
tacker Edit question
Assignee:
venkatamahesh Edit question
Solved by:
venkatamahesh
Solved:
Last query:
Last reply:
Revision history for this message
Best venkatamahesh (venkatamaheshkotha) said :
#1

Have you pulled master code for second time ?

 This is due to changes in openstack/tacker and openstack/tacker-horizon regarding the location of _80_nfv.py file . And the respective patches are https://review.openstack.org/#/c/418173/1 and https://review.openstack.org/#/c/417657/. So try again by cloning the updated code which includes this patches.

Revision history for this message
wangchenglong (wangchenglong) said :
#2

you're right. After i pulled the master code again, devstack installation completes. Thank you.

Revision history for this message
wangchenglong (wangchenglong) said :
#3

Thanks venkatamahesh, that solved my question.