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.
15 lines
526 B
15 lines
526 B
<div class="ngCellText">
|
|
<span ng-repeat="controller in row.entity.replicationControllers">
|
|
<a ng-href="{{controller | kubernetesPageLink}}"
|
|
title="View controller details">
|
|
<span>{{controller.metadata.name || controller.id}}</span>
|
|
</a>
|
|
|
|
<span class="pull-right">
|
|
<a class="badge badge-info" href="" ng-click="$emit('do-resize', controller)"
|
|
title="Resize the number of replicas of this controller">
|
|
{{controller.spec.replicas || 0}}</a>
|
|
</span>
|
|
</span>
|
|
</div>
|