]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.html
import ceph 16.2.7
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / create-cluster / create-cluster-review.component.html
CommitLineData
a4b75251
TL
1<div class="row">
2 <div class="col-lg-4">
3 <fieldset>
4 <legend class="cd-header"
5 i18n>Cluster Resources</legend>
6 <table class="table table-striped">
7 <tr>
8 <td i18n
9 class="bold">Hosts</td>
10 <td>{{ hostsCount }}</td>
11 </tr>
12 <tr>
13 <td i18n
14 class="bold">Storage Capacity</td>
15 <td><span i18n>Number of devices: {{ totalDevices }}. Raw capacity:
16 {{ totalCapacity | dimlessBinary }}.</span></td>
17 </tr>
18 <tr>
19 <td i18n
20 class="bold">CPUs</td>
21 <td>{{ totalCPUs }}</td>
22 </tr>
23 <tr>
24 <td i18n
25 class="bold">Memory</td>
26 <td>{{ totalMemory }}</td>
27 </tr>
28 </table>
29 </fieldset>
30 </div>
31
32 <div class="col-lg-8">
33 <legend i18n
34 class="cd-header">Hosts by Services</legend>
35 <cd-table [data]="hostsByService['data']"
36 [columns]="hostsByService['columns']"
37 [toolHeader]="false">
38 </cd-table>
39 </div>
40</div>
41
42<legend i18n
43 class="cd-header">Host Details</legend>
44<cd-hosts [hiddenColumns]="['services', 'status']"
45 [hideToolHeader]="true"
46 [hideTitle]="true"
47 [hideSubmitBtn]="true"
48 [hasTableDetails]="false"
49 [showGeneralActionsOnly]="true">
50</cd-hosts>