Horizon UI for NFV Orchestration (Tacker)
Go to file
manchandavishal 1b1ee9e7e2 Use Horizon project template for django jobs
Horizon defined a project template 'horizon-non-primary-django-jobs'
for django jobs. This patch use that template to run django jobs
here. For information please refer [1]

[1] https://review.opendev.org/#/c/681969/

Change-Id: I186bb5edfaece73222534fbede928f0903595b04
2019-11-20 12:26:17 +00:00
doc Generate PDF documentation 2019-09-11 07:14:22 +00:00
releasenotes/notes Drop python 2.7 support and testing 2019-11-13 23:09:05 +00:00
tacker_horizon Merge "Update json module to jsonutils" 2019-04-30 10:47:49 +00:00
test Add test dir to tox runs 2015-06-04 16:45:07 -07:00
.gitignore Add .idea/ to tacker-horizon .gitignore 2016-07-08 21:28:42 +05:30
.gitreview OpenDev Migration Patch 2019-04-19 19:34:50 +00:00
.mailmap Add missing files for rpm-packaging 2017-02-10 14:22:03 +08:00
.zuul.yaml Use Horizon project template for django jobs 2019-11-20 12:26:17 +00:00
CONTRIBUTING.rst Update the outdated links in repo 2018-02-21 17:06:36 +09:00
HACKING.rst Update the outdated links in repo 2018-02-21 17:06:36 +09:00
LICENSE Add missing files for rpm-packaging 2017-02-10 14:22:03 +08:00
MANIFEST.in Add missing files for rpm-packaging 2017-02-10 14:22:03 +08:00
README.rst Replace git.openstack.org URLs with opendev.org URLs 2019-05-20 03:15:27 +00:00
babel-django.cfg Add translation support for tacker-horizon 2016-02-21 04:28:37 -05:00
babel-djangojs.cfg Update the outdated links in repo 2018-02-21 17:06:36 +09:00
lower-constraints.txt Update json module to jsonutils 2019-02-27 23:52:45 +08:00
manage.py Fix compress failure 2018-08-02 11:43:18 +09:00
requirements.txt Update json module to jsonutils 2019-02-27 23:52:45 +08:00
setup.cfg Drop python 2.7 support and testing 2019-11-13 23:09:05 +00:00
setup.py Updated from global requirements 2017-03-07 02:07:19 +00:00
test-requirements.txt Update hacking version 2019-01-30 10:56:37 +00:00
tox.ini Use Horizon project template for django jobs 2019-11-20 12:26:17 +00:00

README.rst

Team and repository tags

image

Tacker Horizon UI

Horizon UI for Tacker VNF Manager

Installation

Note: The paths we are using for configuration files in these steps are with reference to Ubuntu Operating System. The paths may vary for other Operating Systems.

The branch_name which is used in commands, specify the branch_name as stable/<branch> for any stable branch installation. For eg: stable/queens, stable/pike. If unspecified the default will be master branch. The installation of tacker-horizon is as following steps.

Clone tacker-horizon repository.
cd ~/
git clone https://opendev.org/openstack/tacker-horizon -b <branch_name>
Install horizon module.
cd tacker-horizon
sudo python setup.py install
Enable tacker horizon in dashboard.
sudo cp tacker_horizon/enabled/* \
    /opt/stack/horizon/openstack_dashboard/enabled/
Collect and compress static files.
./manage.py collectstatic --noinput
echo yes | ./manage.py compress
Restart Apache server using Upstart.
sudo service apache2 restart
Or restart Apache server using Systemd.
sudo systemctl restart apache2