Horizon UI for NFV Orchestration (Tacker)
Go to file
OpenStack Release Bot cbe3c404a3 Update TOX_CONSTRAINTS_FILE for stable/2024.1
Update the URL to the upper-constraints file to point to the redirect
rule on releases.openstack.org so that anyone working on this branch
will switch to the correct upper-constraints list automatically when
the requirements repository branches.

Until the requirements repository has as stable/2024.1 branch, tests will
continue to use the upper-constraints list on master.

Change-Id: I8ab83bcae4cec536f898d84e9c6d64d3e27cf00f
2024-03-15 14:16:58 +00:00
doc Remove broken link from tacker horizon guide 2021-07-03 22:36:42 +05:30
releasenotes/notes Support NFV Orchestration API v2.0 2024-03-13 14:40:23 +00:00
tacker_horizon Support NFV Orchestration API v2.0 2024-03-13 14:40:23 +00:00
test Add test dir to tox runs 2015-06-04 16:45:07 -07:00
tools Add tacker-horizon integration test framework 2021-08-30 17:29:20 +05:30
.gitignore Add .idea/ to tacker-horizon .gitignore 2016-07-08 21:28:42 +05:30
.gitreview Update .gitreview for stable/2024.1 2024-03-15 14:16:58 +00:00
.mailmap Add missing files for rpm-packaging 2017-02-10 14:22:03 +08:00
.zuul.yaml Switch to 2023.1 Python3 unit tests and generic template name 2022-09-13 14:16:29 +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
bindep.txt Update ``bindep.txt`` to sync with the horizon 2023-03-01 03:16:28 +00:00
manage.py Quick fix for installation guide 2020-07-19 14:24:32 +00:00
requirements.txt Drop lower-constraints.txt and its testing 2022-05-03 09:26:05 +05:30
setup.cfg Update metadata in setup.cfg 2023-07-31 05:42:36 +00:00
setup.py Cleanup py27 support 2023-07-05 08:27:33 +00:00
test-requirements.txt Add tacker-horizon integration test framework 2021-08-30 17:29:20 +05:30
tox.ini Update TOX_CONSTRAINTS_FILE for stable/2024.1 2024-03-15 14:16:58 +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