2018-01-05 20:59:36 +00:00
|
|
|
<td data-test-task-group-name>
|
2020-06-01 19:03:56 +00:00
|
|
|
<LinkTo @route="jobs.job.task-group" @models={{array taskGroup.job taskGroup}} class="is-primary">
|
2017-10-20 05:30:10 +00:00
|
|
|
{{taskGroup.name}}
|
2020-06-01 19:03:56 +00:00
|
|
|
</LinkTo>
|
2017-10-20 05:30:10 +00:00
|
|
|
</td>
|
2020-06-17 07:20:57 +00:00
|
|
|
<td data-test-task-group-count class="nowrap">
|
2020-06-17 08:48:41 +00:00
|
|
|
{{count}}
|
2020-06-17 07:20:57 +00:00
|
|
|
{{#if taskGroup.scaling}}
|
2020-06-18 05:45:21 +00:00
|
|
|
<div
|
|
|
|
data-test-scale-controls
|
|
|
|
class="button-bar is-shadowless is-text bumper-left {{if (cannot "scale job") "tooltip"}}"
|
|
|
|
aria-label={{if (cannot "scale job") "You aren't allowed to scale task groups"}}>
|
2020-06-17 08:48:41 +00:00
|
|
|
<button
|
2020-06-18 05:45:21 +00:00
|
|
|
data-test-scale="decrement"
|
2020-06-17 08:48:41 +00:00
|
|
|
role="button"
|
|
|
|
class="button is-xsmall is-light"
|
2020-06-18 05:45:21 +00:00
|
|
|
disabled={{or isMinimum runningDeployment (cannot "scale job")}}
|
2020-06-17 08:48:41 +00:00
|
|
|
onclick={{action "countDown"}}>
|
|
|
|
{{x-icon "minus-plain" class="is-text"}}
|
|
|
|
</button>
|
|
|
|
<button
|
2020-06-18 05:45:21 +00:00
|
|
|
data-test-scale="increment"
|
2020-06-17 08:48:41 +00:00
|
|
|
role="button"
|
|
|
|
class="button is-xsmall is-light"
|
2020-06-18 05:45:21 +00:00
|
|
|
disabled={{or isMaximum runningDeployment (cannot "scale job")}}
|
2020-06-17 08:48:41 +00:00
|
|
|
onclick={{action "countUp"}}>
|
|
|
|
{{x-icon "plus-plain" class="is-text"}}
|
|
|
|
</button>
|
2020-06-17 07:20:57 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2018-01-05 20:59:36 +00:00
|
|
|
<td data-test-task-group-allocs>
|
2020-06-01 19:03:56 +00:00
|
|
|
<div class="inline-chart"><AllocationStatusBar @allocationContainer={{taskGroup.summary}} @isNarrow={{true}} /></div>
|
2017-09-19 14:47:10 +00:00
|
|
|
</td>
|
2020-02-11 04:49:58 +00:00
|
|
|
<td data-test-task-group-volume>{{if taskGroup.volumes.length "Yes"}}</td>
|
2018-01-05 20:59:36 +00:00
|
|
|
<td data-test-task-group-cpu>{{taskGroup.reservedCPU}} MHz</td>
|
|
|
|
<td data-test-task-group-mem>{{taskGroup.reservedMemory}} MiB</td>
|
|
|
|
<td data-test-task-group-disk>{{taskGroup.reservedEphemeralDisk}} MiB</td>
|