mirror of https://github.com/rancher/ui.git
Add image to POD details
https://github.com/rancher/rancher/issues/12536
This commit is contained in:
parent
375ff37d46
commit
a672af3858
|
|
@ -20,6 +20,18 @@
|
|||
|
||||
<section>
|
||||
<div class="row banner bg-info basics">
|
||||
{{#each model.containers as |container|}}
|
||||
<div class="vertical-middle">
|
||||
<label class="acc-label vertical-middle p-0">
|
||||
{{#if (gt model.containers.length 1)}}
|
||||
{{t 'podPage.containerImage' container=container.name}}
|
||||
{{else}}
|
||||
{{t 'podPage.image'}}
|
||||
{{/if}}
|
||||
</label>
|
||||
{{container.image}} {{copy-to-clipboard clipboardText=container.image size="small"}}
|
||||
</div>
|
||||
{{/each}}
|
||||
<div class="vertical-middle">
|
||||
<label class="acc-label vertical-middle p-0">{{t 'podPage.podIp'}}:</label>
|
||||
{{#if model.displayIp}}
|
||||
|
|
|
|||
|
|
@ -697,6 +697,8 @@ podPage:
|
|||
header: 'Pod: {name}'
|
||||
nodeIp: Node IP
|
||||
podIp: Pod IP
|
||||
containerImage: 'Image of {container}'
|
||||
image: Image
|
||||
|
||||
containersPage:
|
||||
table:
|
||||
|
|
|
|||
Loading…
Reference in New Issue