{{#list-table
data-test-deployment-task-groups
source=deployment.taskGroupSummaries
class="task-groups" as |t|}}
{{#t.head}}
Name |
Needs Promotion? |
Auto Revert? |
Canaries |
Allocs |
Healthy Allocs |
Unhealthy Allocs |
{{/t.head}}
{{#t.body as |row|}}
{{row.model.name}} |
{{#if row.model.requiresPromotion}}
{{if row.model.promoted "No" "Yes"}}
{{else}}
N/A
{{/if}}
|
{{if row.model.autoRevert "Yes" "No"}} |
{{or row.model.placedCanaries 0}} / {{row.model.desiredCanaries}} |
{{row.model.placedAllocs}} / {{row.model.desiredTotal}} |
{{row.model.healthyAllocs}} |
{{row.model.unhealthyAllocs}} |
{{/t.body}}
{{/list-table}}