RETIRED, Ironic HTTP(S) Client
Go to file
Michael Krotscheck ea9c34e5ed Remove Node
This patch adds controls necessary to remove nodes from Ironic. Included
are:

- NodeActionController, a generic, initializable controller that handles actions
  on nodes.
- RemoveNodeModalController, a controller for a modal window that permits
  the deletion of _multiple_ nodes.
- Test coverage for the above, with an updated coverage threshold.

Note that at this time, the code path to batch delete nodes is not yet surfaced
in the user interface.

Change-Id: I325d43fead7c63bb527307a6ee608ca36a59ab83
2016-02-19 05:29:14 -08:00
app Remove Node 2016-02-19 05:29:14 -08:00
test Remove Node 2016-02-19 05:29:14 -08:00
.editorconfig Added shareable EditorConfig 2015-06-22 09:05:45 -07:00
.eslintignore Upgraded eslint 2016-02-16 11:42:22 -08:00
.eslintrc Upgraded eslint-plugin-angular 2016-02-19 05:29:01 -08:00
.gitignore Added ./dist directory to .gitignore 2016-02-19 05:29:14 -08:00
.gitreview Added .gitreview file 2015-07-01 09:46:31 -07:00
LICENSE Initial commit 2015-03-18 11:04:55 -07:00
README.md Add note about nodejs-legacy to README 2015-10-02 16:01:09 -07:00
bower.json Include fontawesome fonts 2015-10-01 15:13:31 -07:00
gulpfile.js Updated Iconfont 2016-01-04 13:13:21 -08:00
karma.conf.js Remove Node 2016-02-19 05:29:14 -08:00
package.json Upgraded eslint-plugin-angular 2016-02-19 05:29:01 -08:00

README.md

ironic-webclient

A webclient for OpenStack Ironic.

Important Things

It is imperative that the design and infrastructure of this project makes it easy to package for various linux distributions. As such, the following decisions have been made:

#####The project must be fully functional directly from source.

  • ECMAScript 5 only, no transpiled languages such as TypeScript or CoffeeScript.
  • All javascript libraries used at runtime (in the browser) must be committed to source.

Note that we do not guarantee performance if running in this mode. Certain things, such as in-browser CSS compilation will severely degrade the performance of this application.

The project must be easy to develop on.
  • We use common javascript tooling to assist in development (npm, gulp, eslint, bower, etc).
  • These tools are supportive, but not required, as such they are considered to be environmental, and thus not committed to source.

#####The project must be compatible with the OpenStack License.

  • All runtime dependencies and development tools must use licenses compatible with the Apache2.0 license.

Development Server

  1. Check out the code.
  2. Run npm install
    1. Realize that you don't have node installed. Install node, and npm.
    2. If using a Debian/Ubuntu system, also install node.js and nodejs-legacy.
    3. Then try again.
  3. Run npm start

Other options

// Will resolve all the runtime dependencies. Remember to commit them.
npm run update_dependencies

// Will package the site.
npm pack

// Will spin up a local server and host the raw, unpackaged application.
npm start