a9004faa11
This adds details about task lifecycles to allocations, task groups, and tasks. It includes a live-updating timeline-like chart on allocations.
33 lines
775 B
JavaScript
33 lines
775 B
JavaScript
import { Factory } from 'ember-cli-mirage';
|
|
import faker from 'nomad-ui/mirage/faker';
|
|
import { generateResources } from '../common';
|
|
|
|
const DRIVERS = ['docker', 'java', 'rkt', 'qemu', 'exec', 'raw_exec'];
|
|
|
|
export default Factory.extend({
|
|
// Hidden property used to compute the Summary hash
|
|
groupNames: [],
|
|
|
|
// Set in the TaskGroup factory
|
|
volumeMounts: [],
|
|
|
|
JobID: '',
|
|
|
|
name: id => `task-${faker.hacker.noun().dasherize()}-${id}`,
|
|
driver: () => faker.helpers.randomize(DRIVERS),
|
|
|
|
Resources: generateResources,
|
|
|
|
Lifecycle: i => {
|
|
const cycle = i % 3;
|
|
|
|
if (cycle === 0) {
|
|
return null;
|
|
} else if (cycle === 1) {
|
|
return { Hook: 'prestart', Sidecar: false };
|
|
} else {
|
|
return { Hook: 'prestart', Sidecar: true };
|
|
}
|
|
},
|
|
});
|