https://github.com/openstack/tacker-horizon
Horizon UI for NFV Orchestration (Tacker). Mirror of code maintained at opendev.org.
https://github.com/openstack/tacker-horizon
Last synced: about 1 year ago
JSON representation
Horizon UI for NFV Orchestration (Tacker). Mirror of code maintained at opendev.org.
- Host: GitHub
- URL: https://github.com/openstack/tacker-horizon
- Owner: openstack
- License: apache-2.0
- Created: 2015-06-05T22:49:44.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-05-08T15:01:20.000Z (about 2 years ago)
- Last Synced: 2024-05-09T18:49:21.749Z (about 2 years ago)
- Language: Python
- Homepage: https://opendev.org/openstack/tacker-horizon
- Size: 1.25 MB
- Stars: 23
- Watchers: 7
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
========================
Team and repository tags
========================
.. image:: https://governance.openstack.org/tc/badges/tacker-horizon.svg
:target: https://governance.openstack.org/tc/reference/tags/index.html
.. Change things from this point on
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/ 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
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