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

26 lines
690 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">
{{#list-table
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>Modified</th>
2017-09-19 14:47:10 +00:00
<th>Name</th>
<th>Status</th>
<th>Version</th>
2017-09-19 14:47:10 +00:00
<th>Node</th>
<th>CPU</th>
<th>Memory</th>
{{/t.head}}
{{#t.body as |row|}}
{{allocation-row data-test-deployment-allocation allocation=row.model context="job"}}
2017-09-19 14:47:10 +00:00
{{/t.body}}
{{/list-table}}
</div>
</div>