open-nomad/ui/app/templates/components/job-deployment/deployment-allocations.hbs

28 lines
739 B
Handlebars
Raw Normal View History

<div data-test-deployment-allocations class="boxed-section">
2017-09-19 14:47:10 +00:00
<div class="boxed-section-head">
Allocations
</div>
<div class="boxed-section-body is-full-bleed">
<ListTable
@source={{deployment.allocations}}
@class="allocations" as |t|>
<t.head>
2018-05-02 21:01:34 +00:00
<th class="is-narrow"></th>
2017-09-19 14:47:10 +00:00
<th>ID</th>
<th>Task Group</th>
<th>Created</th>
<th>Modified</th>
2017-09-19 14:47:10 +00:00
<th>Status</th>
<th>Version</th>
2017-09-19 14:47:10 +00:00
<th>Node</th>
2020-02-11 04:51:59 +00:00
<th>Volume</th>
2017-09-19 14:47:10 +00:00
<th>CPU</th>
<th>Memory</th>
</t.head>
<t.body as |row|>
<AllocationRow data-test-deployment-allocation @allocation={{row.model}} @context="job" />
</t.body>
</ListTable>
2017-09-19 14:47:10 +00:00
</div>
</div>