You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aggregation-platform/plugins/kubernetes/html/appPodCountsAndLinkTemplate...

10 lines
562 B

<div class="ngCellText" title="Number of running pods for this controller">
<div ng-repeat="podCounters in row.entity.$podCounters track by $index">
<a ng-show="podCounters.podsLink" href="{{podCounters.podsLink}}" title="{{podCounters.labelText}}">
<span ng-show="podCounters.valid" class="badge badge-success">{{podCounters.valid}}</span>
<span ng-show="podCounters.waiting" class="badge">{{podCounters.waiting}}</span>
<span ng-show="podCounters.error" class="badge badge-warning">{{podCounters.error}}</span>
</a>
</div>
</div>