]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/services.component.html
5e2bcc53603347ccd672761abf74014243c7e5cd
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / services / services.component.html
1 <cd-orchestrator-doc-panel *ngIf="!hasOrchestrator"></cd-orchestrator-doc-panel>
2 <ng-container *ngIf="hasOrchestrator">
3 <cd-table [data]="services"
4 [columns]="columns"
5 identifier="service_name"
6 forceIdentifier="true"
7 columnMode="flex"
8 selectionType="single"
9 [autoReload]="60000"
10 (fetchData)="getServices($event)"
11 (updateSelection)="updateSelection($event)">
12 <cd-service-details cdTableDetail
13 [permissions]="permissions"
14 [selection]="selection">
15 </cd-service-details>
16 </cd-table>
17 </ng-container>