Skip to content

Commit 5740e8a

Browse files
Add vddk details in host UI page
1 parent e35d12e commit 5740e8a

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

ui/public/locales/en.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,6 +1215,8 @@
12151215
"label.host.alerts": "Hosts in alert state",
12161216
"label.host.name": "Host name",
12171217
"label.host.ovftool.version": "OVFTool Version",
1218+
"label.host.vddk.support": "VDDK Support",
1219+
"label.host.vddk.version": "VDDK Version",
12181220
"label.host.tag": "Host tag",
12191221
"label.host.virtv2v.version": "Virt-v2v Version",
12201222
"label.hostcontrolstate": "Compute Resource Status",

ui/src/views/infra/HostInfo.vue

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,22 @@
6464
</div>
6565
</div>
6666
</a-list-item>
67+
<a-list-item v-if="host.details && host.details['host.vddk.support']">
68+
<div>
69+
<strong>{{ $t('label.host.vddk.support') }}</strong>
70+
<div>
71+
{{ host.details['host.vddk.support'] }}
72+
</div>
73+
</div>
74+
</a-list-item>
75+
<a-list-item v-if="host.details && host.details['host.vddk.version']">
76+
<div>
77+
<strong>{{ $t('label.host.vddk.version') }}</strong>
78+
<div>
79+
{{ host.details['host.vddk.version'] }}
80+
</div>
81+
</div>
82+
</a-list-item>
6783
<a-list-item v-if="host.details && host.details['host.ovftool.version']">
6884
<div>
6985
<strong>{{ $t('label.host.ovftool.version') }}</strong>

0 commit comments

Comments
 (0)