mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 19:05:42 +03:00
Co-authored-by: Phil Renaud <phil@riotindustries.com> Co-authored-by: Luiz Aoqui <luiz@hashicorp.com>
14 lines
283 B
JavaScript
14 lines
283 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { Factory } from 'ember-cli-mirage';
|
|
|
|
export default Factory.extend({
|
|
name: (i) => `node-pool-${i}`,
|
|
description: (i) => `describe node-pool-${i}`,
|
|
meta: {},
|
|
schedulerConfiguration: {},
|
|
});
|