Horizon UI for NFV Orchestration (Tacker)
afc4b89b0a
As discussed in TC PTG[1] and TC resolution[2], dropping the lower-constraints.txt file and its testing. We will keep lower bounds in the requirements.txt file but with a note that these are not tested lower bounds and we try our best to keep them updated. [1] https://etherpad.opendev.org/p/tc-zed-ptg#L326 [2] https://governance.openstack.org/tc/resolutions/20220414-drop-lower-constraints.html#proposal Co-Authored-By: Manpreet Kaur <kaurmanpreet2620@gmail.com> Change-Id: Iff303aee59ca9232e10e41d478f04abb085b9051 |
||
---|---|---|
doc | ||
releasenotes/notes | ||
tacker_horizon | ||
test | ||
tools | ||
.gitignore | ||
.gitreview | ||
.mailmap | ||
.zuul.yaml | ||
babel-django.cfg | ||
babel-djangojs.cfg | ||
bindep.txt | ||
CONTRIBUTING.rst | ||
HACKING.rst | ||
LICENSE | ||
manage.py | ||
MANIFEST.in | ||
README.rst | ||
requirements.txt | ||
setup.cfg | ||
setup.py | ||
test-requirements.txt | ||
tox.ini |
Team and repository tags
Tacker Horizon UI
Horizon UI for Tacker VNF Manager
- License: Apache license
- Source: https://opendev.org/openstack/tacker-horizon
- Bugs: https://bugs.launchpad.net/tacker
- Tacker-horizon docs: https://docs.openstack.org/tacker-horizon/latest/
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