mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
* Gallery allows picking stuff * Small fixes * added sentinel templates * Can set enforcement level on policies * Working on the interactive sentinel dev mode * Very rough development flow on FE * Changed position in gutter menu * More sentinel stuff * PR cleanup: removed testmode, removed unneeded mixins and deps * Heliosification * Index-level sentinel policy deletion and page title fixes * Makes the Canaries sentinel policy real and then comments out the unfinished ones * rename Access Control to Administration in prep for moving Sentinel Policies and Node Pool admin there * Sentinel policies moved within the Administration section * Mirage fixture for sentinel policy endpoints * Description length check and 500 prevention * Sync review PR feedback addressed, implied butons on radio cards * Cull un-used sentinel policies --------- Co-authored-by: Mike Nomitch <mail@mikenomitch.com>
153 lines
3.8 KiB
JavaScript
153 lines
3.8 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import EmberRouter from '@ember/routing/router';
|
|
import config from 'nomad-ui/config/environment';
|
|
|
|
export default class Router extends EmberRouter {
|
|
location = config.locationType;
|
|
rootURL = config.rootURL;
|
|
}
|
|
|
|
Router.map(function () {
|
|
this.route('exec', { path: '/exec/:job_name' }, function () {
|
|
this.route('task-group', { path: '/:task_group_name' }, function () {
|
|
this.route('task', { path: '/:task_name' });
|
|
});
|
|
});
|
|
|
|
this.route('jobs', function () {
|
|
this.route('run', function () {
|
|
this.route('templates', function () {
|
|
this.route('new');
|
|
this.route('manage');
|
|
this.route('template', { path: '/:name' });
|
|
});
|
|
});
|
|
this.route('job', { path: '/:job_name' }, function () {
|
|
this.route('task-group', { path: '/:name' });
|
|
this.route('definition');
|
|
this.route('versions');
|
|
this.route('deployments');
|
|
this.route('dispatch');
|
|
this.route('evaluations');
|
|
this.route('allocations');
|
|
this.route('clients');
|
|
this.route('services', function () {
|
|
this.route('service', { path: '/:name' });
|
|
});
|
|
this.route('variables');
|
|
});
|
|
});
|
|
|
|
this.route('optimize', function () {
|
|
this.route('summary', { path: '*slug' });
|
|
});
|
|
|
|
this.route('clients', function () {
|
|
this.route('client', { path: '/:node_id' }, function () {
|
|
this.route('monitor');
|
|
});
|
|
});
|
|
|
|
this.route('servers', function () {
|
|
this.route('server', { path: '/:agent_id' }, function () {
|
|
this.route('monitor');
|
|
});
|
|
});
|
|
|
|
this.route('topology');
|
|
|
|
this.route('csi', function () {
|
|
this.route('volumes', function () {
|
|
this.route('volume', { path: '/:volume_name' });
|
|
});
|
|
|
|
this.route('plugins', function () {
|
|
this.route('plugin', { path: '/:plugin_name' }, function () {
|
|
this.route('allocations');
|
|
});
|
|
});
|
|
});
|
|
|
|
this.route('allocations', function () {
|
|
this.route('allocation', { path: '/:allocation_id' }, function () {
|
|
this.route('fs-root', { path: '/fs' });
|
|
this.route('fs', { path: '/fs/*path' });
|
|
|
|
this.route('task', { path: '/:name' }, function () {
|
|
this.route('logs');
|
|
this.route('fs-root', { path: '/fs' });
|
|
this.route('fs', { path: '/fs/*path' });
|
|
});
|
|
});
|
|
});
|
|
|
|
this.route('settings', function () {
|
|
this.route('tokens');
|
|
this.route('user-settings');
|
|
});
|
|
|
|
// if we don't include function() the outlet won't render
|
|
this.route('evaluations', function () {});
|
|
|
|
this.route('not-found', { path: '/*' });
|
|
this.route('variables', function () {
|
|
this.route('new');
|
|
|
|
this.route(
|
|
'variable',
|
|
{
|
|
path: '/var/*id',
|
|
},
|
|
function () {
|
|
this.route('edit');
|
|
}
|
|
);
|
|
|
|
this.route('path', {
|
|
path: '/path/*absolutePath',
|
|
});
|
|
});
|
|
|
|
this.route('administration', function () {
|
|
this.route('policies', function () {
|
|
this.route('new');
|
|
this.route('policy', {
|
|
path: '/:name',
|
|
});
|
|
});
|
|
this.route('roles', function () {
|
|
this.route('new');
|
|
this.route('role', {
|
|
path: '/:id',
|
|
});
|
|
});
|
|
this.route('tokens', function () {
|
|
this.route('new');
|
|
this.route('token', {
|
|
path: '/:id',
|
|
});
|
|
});
|
|
this.route('namespaces', function () {
|
|
this.route('new');
|
|
// Note, this needs the "acl-" portion due to
|
|
// "namespace" being a magic string in Ember
|
|
this.route('acl-namespace', {
|
|
path: '/:name',
|
|
});
|
|
});
|
|
this.route('sentinel-policies', function () {
|
|
this.route('new');
|
|
this.route('gallery');
|
|
this.route('policy', { path: '/:id' });
|
|
});
|
|
});
|
|
// Mirage-only route for testing OIDC flow
|
|
if (config['ember-cli-mirage']) {
|
|
this.route('oidc-mock');
|
|
}
|
|
});
|