Ironic plugin UI for Horizon to allow users to view and manage bare metal.
Go to file
Peter Piela 09f0b88cc5 Eliminate dependency on master version of horizon
Modified test-requirements.txt to reference the stable/mitaka
horizon version

Change-Id: Ia2988664748d7bc502c12f5943b6b0bf8b685df3
Closes-Bug: #1565577
2016-04-04 14:48:39 -04:00
doc/source Corrected copyright details for the project 2016-01-21 12:20:43 +00:00
ironic_ui Added closing tag - quick fix 2016-03-23 17:02:18 +00:00
.coveragerc Added cookiecutter files 2016-01-20 19:00:52 +00:00
.eslintignore Added eslint config to ironic-ui 2016-03-23 11:55:49 +00:00
.eslintrc Added eslint config to ironic-ui 2016-03-23 11:55:49 +00:00
.gitignore Added eslint config to ironic-ui 2016-03-23 11:55:49 +00:00
.gitreview Update .gitreview for stable/mitaka 2016-03-24 10:45:05 +01:00
.mailmap Added cookiecutter files 2016-01-20 19:00:52 +00:00
.testr.conf Added cookiecutter files 2016-01-20 19:00:52 +00:00
CONTRIBUTING.rst Added cookiecutter files 2016-01-20 19:00:52 +00:00
HACKING.rst Added cookiecutter files 2016-01-20 19:00:52 +00:00
LICENSE Added cookiecutter files 2016-01-20 19:00:52 +00:00
MANIFEST.in Plugin setup 2016-02-01 13:15:11 +00:00
README.rst Fixing nits of ironic-ui Readme.rst 2016-03-15 11:35:21 +00:00
babel-django.cfg Fix translation setup 2016-03-13 08:00:06 +00:00
babel-djangojs.cfg Fix translation setup 2016-03-13 08:00:06 +00:00
manage.py Plugin setup 2016-02-01 13:15:11 +00:00
package.json Added eslint config to ironic-ui 2016-03-23 11:55:49 +00:00
requirements.txt Added installation instructions to the Readme 2016-03-02 14:47:55 +00:00
setup.cfg Fix translation setup 2016-03-13 08:00:06 +00:00
setup.py Remove python-ironicclient from setup_requires 2016-03-24 15:34:12 +00:00
test-requirements.txt Eliminate dependency on master version of horizon 2016-04-04 14:48:39 -04:00
tox.ini Plugin setup 2016-02-01 13:15:11 +00:00

README.rst

Ironic UI

The Ironic UI is a Horizon plugin that will allow users to view and manage bare metal nodes, ports and drivers.

Features

  • View bare metal nodes
  • View node details
  • Apply maintenance and power on/off actions to the nodes

Installation Instructions

Please note that the following instructions assume that you have an existing installation of the OpenStack Horizon dashboard application. For Horizon installation please see http://docs.openstack.org/developer/horizon/quickstart.html

  1. Clone Ironic UI repository:

git clone https://git.openstack.org/openstack/ironic-ui

2. Change into the root directory of your horizon installation and run the venv.

NOTE: this has been preinstalled when horizon was setup with ./run_tests.sh -do not reinstall venv

source .venv/bin/activate

3. Copy the _2200_ironic.py file from ironic-ui/enabled directory to horizon/openstack_dashboard/local/enabled

  1. Change into the ironic-ui repository and package the plugin:

pip install -e .

This will build and install the ironic-ui plugin into the active virtual environment associated with your horizon installation. The plugin is installed in "editable" mode as a link back to your ironic-ui plugin directory.

Also ensure that all packages as per requirements.txt have been installed.

  1. Change back into the horizon repository and bring up your environment:

./run_tests.sh --runserver

The Ironic Bare Metal Provisioning plugin should now be visible in the Horizon navigation.

To uninstall, use pip uninstall (find the name of the package to uninstall by running pip list from inside the horizon .venv). You will also need to remove the enabled file from the openstack_dashboard/enabled folder.