2 <div class="col-sm-12 col-lg-12">
4 <cd-alert-panel *ngIf="!rgwModuleStatus"
7 i18n>In order to access the import/export feature, the rgw module must be enabled
8 <a class="text-decoration-underline"
9 (click)="enableRgwModule()">
10 Enable the Object Gateway Module</a>
12 <cd-alert-panel *ngIf="restartGatewayMessage"
15 i18n>Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates.
16 <a class="text-decoration-underline"
17 routerLink="/services">
20 <cd-table-actions class="btn-group mb-4 me-2"
21 [permission]="permission"
22 [selection]="selection"
23 [tableActions]="createTableActions">
25 <span *ngIf="showMigrateAction">
26 <cd-table-actions class="btn-group mb-4 me-2 secondary"
27 [permission]="permission"
29 [selection]="selection"
30 [tableActions]="migrateTableAction">
33 <cd-table-actions class="btn-group mb-4 me-2"
34 [permission]="permission"
36 [selection]="selection"
37 [tableActions]="importAction">
39 <cd-table-actions class="btn-group mb-4 me-2"
40 [permission]="permission"
42 [selection]="selection"
43 [tableActions]="exportAction">
47 <div class="card-header"
48 i18n>Topology Viewer</div>
49 <div class="card-body">
51 <div class="col-sm-6 col-lg-6 tree-container">
52 <i *ngIf="loadingIndicator"
53 [ngClass]="[icons.large, icons.spinner, icons.spin]"></i>
56 [options]="treeOptions"
57 (updateData)="onUpdateData()">
58 <ng-template #treeNodeTemplate
60 <span *ngIf="node.data.name"
62 <span *ngIf="(node.data.show_warning)">
63 <i class="text-danger"
65 [title]="node.data.warning_message"
66 [ngClass]="icons.danger"></i>
68 <i [ngClass]="node.data.icon"></i>
71 <span class="badge badge-success me-2"
72 *ngIf="node.data.is_default">
75 <span class="badge badge-warning me-2"
76 *ngIf="node.data.is_master">
79 <span class="badge badge-warning me-2"
80 *ngIf="node.data.secondary_zone">
83 <div class="btn-group align-inline-btns"
84 *ngIf="node.isFocused"
86 <div [title]="editTitle"
89 class="btn btn-light dropdown-toggle-split ms-1"
90 (click)="openModal(node, true)"
91 [disabled]="getDisable() || node.data.secondary_zone">
92 <i [ngClass]="[icons.edit]"></i>
95 <div [title]="deleteTitle"
98 class="btn btn-light ms-1"
99 [disabled]="isDeleteDisabled(node) || node.data.secondary_zone"
100 (click)="delete(node)">
101 <i [ngClass]="[icons.destroy]"></i>
108 <div class="col-sm-6 col-lg-6 metadata"
110 <legend>{{ metadataTitle }}</legend>
112 <cd-table-key-value cdTableDetail
114 </cd-table-key-value>