Skip to content

Commit 2fbc58a

Browse files
author
OpenShift Bot
authored
Merge pull request #2006 from spadgett/monitoring-pods-link
Merged by openshift-bot
2 parents 0e7d693 + e3268e7 commit 2fbc58a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/views/monitoring.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ <h2>Deployments</h2>
262262
Logs are not available for replica sets.
263263
<span ng-if="podsByOwnerUID[replicaSet.metadata.uid] | hashSize">
264264
To see application logs, view the logs for one of the replica set's
265-
<a href="" ng-click="viewPodsForReplicaSet(replicaSet)">pods</a>.
265+
<a href="" ng-click="viewPodsForSet(replicaSet)">pods</a>.
266266
</span>
267267
<div class="mar-top-lg" ng-if="metricsAvailable">
268268
<deployment-metrics
@@ -330,7 +330,7 @@ <h2>Stateful Sets</h2>
330330
Logs are not available for stateful sets.
331331
<span ng-if="podsByOwnerUID[set.metadata.uid] | hashSize">
332332
To see application logs, view the logs for one of the stateful sets's
333-
<a href="" ng-click="viewPodsForReplicaSet(set)">pods</a>.
333+
<a href="" ng-click="viewPodsForSet(set)">pods</a>.
334334
</span>
335335
<div class="mar-top-lg" ng-if="metricsAvailable">
336336
<deployment-metrics

dist/scripts/templates.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10806,7 +10806,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1080610806
"Logs are not available for replica sets.\n" +
1080710807
"<span ng-if=\"podsByOwnerUID[replicaSet.metadata.uid] | hashSize\">\n" +
1080810808
"To see application logs, view the logs for one of the replica set's\n" +
10809-
"<a href=\"\" ng-click=\"viewPodsForReplicaSet(replicaSet)\">pods</a>.\n" +
10809+
"<a href=\"\" ng-click=\"viewPodsForSet(replicaSet)\">pods</a>.\n" +
1081010810
"</span>\n" +
1081110811
"<div class=\"mar-top-lg\" ng-if=\"metricsAvailable\">\n" +
1081210812
"<deployment-metrics pods=\"podsByOwnerUID[replicaSet.metadata.uid]\" containers=\"replicaSet.spec.template.spec.containers\" alerts=\"alerts\">\n" +
@@ -10863,7 +10863,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1086310863
"Logs are not available for stateful sets.\n" +
1086410864
"<span ng-if=\"podsByOwnerUID[set.metadata.uid] | hashSize\">\n" +
1086510865
"To see application logs, view the logs for one of the stateful sets's\n" +
10866-
"<a href=\"\" ng-click=\"viewPodsForReplicaSet(set)\">pods</a>.\n" +
10866+
"<a href=\"\" ng-click=\"viewPodsForSet(set)\">pods</a>.\n" +
1086710867
"</span>\n" +
1086810868
"<div class=\"mar-top-lg\" ng-if=\"metricsAvailable\">\n" +
1086910869
"<deployment-metrics pods=\"podsByOwnerUID[set.metadata.uid]\" containers=\"set.spec.template.spec.containers\" alerts=\"alerts\">\n" +

0 commit comments

Comments
 (0)