Horizon UI for NFV Orchestration (Tacker)
Go to file
Manpreet Kaur 9a85cce99c Update min version of tox
This patch bumps the minimum version of tox to 3.18.0.
Additionally fix the argument such as "whitelist_externals"
which is deprecated, it replaces whitelist_externals by
allowlist_externals option. Please refer [1] for details.

[1] https://github.com/tox-dev/tox/blob/master/docs/changelog.rst#v3180-2020-07-23

Change-Id: I03c8367614fb977b35c10f4529bbc3aaa5c8db47
2021-05-10 17:21:43 +05:30
doc Dropping explicit unicode literal 2021-01-30 15:54:21 +05:30
releasenotes/notes Drop python 2.7 support and testing 2019-11-13 23:09:05 +00:00
tacker_horizon Dropping explicit unicode literal 2021-01-30 15:54:21 +05:30
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 Add Python3 wallaby unit tests 2020-09-23 13:17:41 +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 translation: drop babel extractor definitions 2020-01-07 18:07:28 +00:00
babel-djangojs.cfg translation: drop babel extractor definitions 2020-01-07 18:07:28 +00:00
lower-constraints.txt Move tacker-horizon to new hacking 4.0.0 2020-12-08 03:17:06 +00:00
manage.py Quick fix for installation guide 2020-07-19 14:24:32 +00:00
requirements.txt Drop Django 1.11 support 2020-01-08 02:07:46 +00:00
setup.cfg Add py38 package metadata 2020-07-20 10:45:26 +00:00
setup.py Updated from global requirements 2017-03-07 02:07:19 +00:00
test-requirements.txt Move tacker-horizon to new hacking 4.0.0 2020-12-08 03:17:06 +00:00
tox.ini Update min version of tox 2021-05-10 17:21:43 +05:30

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