]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
320551ef7f28bd9d156e42d265fa413e3b2f9a22
[ceph-ci.git] /
1 <legend>
2   <cd-help-text>
3     An initiator (or host) is the client that connects to the NVMe-oF target to access NVMe storage.
4     The NVMe/TCP protocol allows initiators, to send NVMe-oF commands to storage devices, which are known as targets.
5   </cd-help-text>
6 </legend>
7 <cd-table [data]="initiators"
8           columnMode="flex"
9           (fetchData)="listInitiators()"
10           [columns]="initiatorColumns"
11           selectionType="multiClick"
12           (updateSelection)="updateSelection($event)">
13   <div class="table-actions btn-toolbar">
14     <cd-table-actions [permission]="permission"
15                       [selection]="selection"
16                       class="btn-group"
17                       [tableActions]="tableActions">
18     </cd-table-actions>
19   </div>
20 </cd-table>
21 <ng-template #hostTpl
22              let-value="data.value">
23   <span *ngIf="value === '*'"
24         i18n
25         class="font-monospace">Any host allowed (*)</span>
26   <span *ngIf="value !== '*'"
27         class="font-monospace">{{value}}</span>
28 </ng-template>