open-nomad/ui
Michael Lange 14dca3830a Fixed flaky client-detail test
Since one allocation is preempted, the alloc factory creates a new alloc
that wasn't guaranteed to be running. When it is the first alloc row in
the table, then the alloc row detail test fails because non-running
allocs don't have metrics. The fix was to manually update all the alloc
clientStatuses.
2019-05-09 10:26:55 -07:00
..
app Return a htmlSafe string rather than use triple curlies 2019-05-02 21:47:24 +01:00
config Kind of address the sendAction deprecation 2019-04-10 14:54:35 -07:00
lib/bulma
mirage Add preemption properties to Mirage allocation factory 2019-04-22 16:40:07 -07:00
public Add preempted icon to alloc row 2019-04-22 16:40:04 -07:00
tests Fixed flaky client-detail test 2019-05-09 10:26:55 -07:00
vendor
.editorconfig
.ember-cli
.eslintignore
.eslintrc.js Upgrade eslint to v5 2019-04-10 14:54:37 -07:00
.nvmrc Upgrade to Node 10, latest LTS 2019-04-10 14:54:38 -07:00
.prettierrc
.template-lintrc.js Override default template lintrc (borrowed this one from vault) 2019-04-10 14:54:34 -07:00
.watchmanconfig
DEVELOPMENT_MODE.md
README.md Upgrade to Ember 3.4 2019-04-10 14:54:34 -07:00
ember-cli-build.js Don't remove viewBox from svgs as part of svgo 2019-04-10 14:54:38 -07:00
package.json Converts ANSI terminal codes to HTML in logs 2019-05-02 21:47:23 +01:00
testem.js Upgrade to Ember 3.4 2019-04-10 14:54:34 -07:00
yarn.lock Converts ANSI terminal codes to HTML in logs 2019-05-02 21:47:23 +01:00

README.md

Nomad UI

The official Nomad UI.

Prerequisites

This is an ember.js project, and you will need the following tools installed on your computer.

Installation

The Nomad UI gets cloned along with the rest of Nomad. To install dependencies, do the following from the root of the Nomad project:

$ cd ui
$ yarn

Running / Development

First, make sure nomad is running. The UI, in development mode, runs independently from Nomad, so this could be an official release or a dev branch. Likewise, Nomad can be running in server mode or dev mode. As long as the API is accessible, the UI will work as expected.

Running / Development with Vagrant

All necessary tools for UI development are installed as part of the Vagrantfile. This is primarily to make it easy to build the UI from source while working on Nomad. Due to the filesystem requirements of Broccoli (which powers Ember CLI), it is strongly discouraged to use Vagrant for developing changes to the UI.

That said, development with Vagrant is still possible, but the ember serve command requires two modifications:

  • --watch polling: This allows the vm to notice file changes made in the host environment.
  • --port 4201: The default port 4200 is not forwarded, since local development is recommended.

This makes the full command for running the UI in development mode in Vagrant:

$ ember serve --watch polling --port 4201

Running Tests

Nomad UI tests can be run independently of Nomad golang tests.

  • ember test (single run, headless browser)
  • ember test --server (watches for changes, runs in a full browser)

Linting

Linting should happen automatically in your editor and when committing changes, but it can also be invoked manually.

  • npm run lint:hbs
  • npm run lint:js
  • npm run lint:js -- --fix

Building

Typically make release or make dev-ui will be the desired build workflow, but in the event that build artifacts need to be inspected, ember build will output compiled files in ui/dist.

  • ember build (development)
  • ember build --environment production (production)

Releasing

Nomad UI releases are in lockstep with Nomad releases and are integrated into the make release toolchain.

Troubleshooting

The UI is running, but none of the API requests are working

By default (according to the .embercli file) a proxy address of http://localhost:4646 is used. If you are running Nomad at a different address, you will need to override this setting when running ember serve: ember serve --proxy http://newlocation:1111.

Nomad is running in Vagrant, but I can't access the API from my host machine

Nomad binds to 127.0.0.1:4646 by default, which is the loopback address. Try running nomad bound to 0.0.0.0: bin/nomad -bind 0.0.0.0.

Ports also need to be forwarded in the Vagrantfile. 4646 is already forwarded, but if a port other than the default is being used, that port needs to be added to the Vagrantfile and vagrant reload needs to be run.