Skip to content

Commit fbd7186

Browse files
committed
Add pod configuration yaml information tab
1 parent 99dd412 commit fbd7186

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/main/resources/agent-status-report.template.ftlh

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,19 @@
103103
<li ng-class="{'current_tab' : currenttab == 'pod-logs' }" ng-click="currenttab='pod-logs'">
104104
<a href="#">Logs</a>
105105
</li>
106+
<li ng-class="{'current_tab' : currenttab == 'pod-configuration' }" ng-click="currenttab='pod-configuration'">
107+
<a href="#">Configuration</a>
108+
</li>
106109
</ul>
107110
</div>
108111

109112
<div class="tab-content" ng-show="currenttab == 'pod-details'"></div>
110-
<div class="tab-content pod-logs"
111-
ng-show="currenttab == 'pod-logs'">${ logs?html?replace("\n", "<br>") !} </div>
113+
<div class="tab-content pod-logs" ng-show="currenttab == 'pod-logs'">
114+
${ logs?html?replace("\n", "<br>") !}
115+
</div>
116+
<div class="tab-content pod-configuration" ng-show="currenttab == 'pod-configuration'">
117+
${ configuration?html?replace("\n", "<br>") !}
118+
</div>
112119
</div>
113120
</div>
114121

0 commit comments

Comments
 (0)