{{title "CSI Volumes"}}
{{#if isForbidden}} {{partial "partials/forbidden-message"}} {{else}} {{#if sortedVolumes}} {{#list-pagination source=sortedVolumes size=pageSize page=currentPage as |p|}} {{#list-table source=p.list sortProperty=sortProperty sortDescending=sortDescending class="with-foot" as |t|}} {{#t.head}} {{#t.sort-by prop="name"}}Name{{/t.sort-by}} {{#t.sort-by prop="schedulable"}}Volume Health{{/t.sort-by}} {{#t.sort-by prop="controllersHealthyProportion"}}Controller Health{{/t.sort-by}} {{#t.sort-by prop="nodesHealthyProportion"}}Node Health{{/t.sort-by}} {{#t.sort-by prop="provider"}}Provider{{/t.sort-by}} # Allocs {{/t.head}} {{#t.body key="model.name" as |row|}} {{#link-to "csi.volumes.volume" row.model.plainId class="is-primary"}}{{row.model.name}}{{/link-to}} {{if row.model.schedulable "Schedulable" "Unschedulable"}} {{if (gt row.model.controllersHealthy 0) "Healthy" "Unhealthy"}} ({{row.model.controllersHealthy}}/{{row.model.controllersExpected}}) {{if (gt row.model.nodesHealthy 0) "Healthy" "Unhealthy"}} ({{row.model.nodesHealthy}}/{{row.model.nodesExpected}}) {{row.model.provider}} {{row.model.allocations.length}} {{/t.body}} {{/list-table}}
{{page-size-select onChange=(action resetPagination)}}
{{/list-pagination}} {{else}}

No Volumes

The cluster currently has no CSI Volumes.

{{/if}} {{/if}}