Skip to content

Commit d913366

Browse files
author
OpenShift Bot
committed
Merge pull request #3590 from spadgett/flickery-pod-count
Merged by openshift-bot
2 parents 0d75144 + bd38cb8 commit d913366

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

assets/app/views/_overview-deployment.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ <h3 class="h4">{{rc.metadata.name}}</h3>
8484
<div class="component-label">
8585
Pods
8686
<span ng-if="rc.status.replicas === rc.spec.replicas" class="component-label-details">({{rc.status.replicas}})</span>
87-
<span ng-if="rc.status.replicas !== rc.spec.replicas" class="component-label-details">({{rc.status.replicas}} current, {{rc.spec.replicas || 0}} desired)</span>
87+
<!-- TODO: Change default from 0 to 1 when updating to API version v1. -->
88+
<span ng-if="rc.status.replicas !== rc.spec.replicas" class="component-label-details">(scaling to {{rc.spec.replicas || 0}})</span>
8889
</div>
8990

9091
<pods pods="pods"></pods>

pkg/assets/bindata.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61947,7 +61947,8 @@ created <relative-timestamp timestamp="rc.metadata.creationTimestamp"></relative
6194761947
<div class="component-label">
6194861948
Pods
6194961949
<span ng-if="rc.status.replicas === rc.spec.replicas" class="component-label-details">({{rc.status.replicas}})</span>
61950-
<span ng-if="rc.status.replicas !== rc.spec.replicas" class="component-label-details">({{rc.status.replicas}} current, {{rc.spec.replicas || 0}} desired)</span>
61950+
61951+
<span ng-if="rc.status.replicas !== rc.spec.replicas" class="component-label-details">(scaling to {{rc.spec.replicas || 0}})</span>
6195161952
</div>
6195261953
<pods pods="pods"></pods>
6195361954
</div>

0 commit comments

Comments
 (0)