open-nomad/ui/app/models/placement-failure.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
636 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { attr } from '@ember-data/model';
2017-11-29 01:21:56 +00:00
import Fragment from 'ember-data-model-fragments/fragment';
export default class PlacementFailure extends Fragment {
@attr('string') name;
2017-11-29 01:21:56 +00:00
@attr('number') coalescedFailures;
2017-11-29 01:21:56 +00:00
@attr('number') nodesEvaluated;
@attr('number') nodesExhausted;
2017-11-29 01:21:56 +00:00
// Maps keyed by relevant dimension (dc, class, constraint, etc)ith count values
@attr() nodesAvailable;
@attr() classFiltered;
@attr() constraintFiltered;
@attr() classExhausted;
@attr() dimensionExhausted;
@attr() quotaExhausted;
@attr() scores;
}