open-nomad/ui/app/models/volume.js
Phil Renaud 45dc1cfd58
12986 UI fails to load job when there is an "@" in job name in nomad 130 (#13012)
* LastIndexOf and always append a namespace on job links

* Confirmed the volume equivalent and simplified idWIthNamespace logic

* Changelog added

* PR comments addressed

* Drop the redirect for the time being

* Tests updated to reflect namespace on links

* Task detail test default namespace link for test
2022-05-13 17:01:27 -04:00

65 lines
1.7 KiB
JavaScript

import { computed } from '@ember/object';
import Model from '@ember-data/model';
import { attr, belongsTo, hasMany } from '@ember-data/model';
export default class Volume extends Model {
@attr('string') plainId;
@attr('string') name;
@belongsTo('namespace') namespace;
@belongsTo('plugin') plugin;
@hasMany('allocation') writeAllocations;
@hasMany('allocation') readAllocations;
@computed('writeAllocations.[]', 'readAllocations.[]')
get allocations() {
return [
...this.writeAllocations.toArray(),
...this.readAllocations.toArray(),
];
}
@attr('number') currentWriters;
@attr('number') currentReaders;
@computed('currentWriters', 'currentReaders')
get allocationCount() {
return this.currentWriters + this.currentReaders;
}
@attr('string') externalId;
@attr() topologies;
@attr('string') accessMode;
@attr('string') attachmentMode;
@attr('boolean') schedulable;
@attr('string') provider;
@attr('string') version;
@attr('boolean') controllerRequired;
@attr('number') controllersHealthy;
@attr('number') controllersExpected;
@computed('plainId')
get idWithNamespace() {
return `${this.plainId}@${this.belongsTo('namespace').id()}`;
}
@computed('controllersHealthy', 'controllersExpected')
get controllersHealthyProportion() {
return this.controllersHealthy / this.controllersExpected;
}
@attr('number') nodesHealthy;
@attr('number') nodesExpected;
@computed('nodesHealthy', 'nodesExpected')
get nodesHealthyProportion() {
return this.nodesHealthy / this.nodesExpected;
}
@attr('number') resourceExhausted;
@attr('number') createIndex;
@attr('number') modifyIndex;
}