Fix the incorrect min pods when "kubectl get hpa"

pull/6/head
Janet Kuo 2015-10-19 16:17:26 -07:00
parent b5c0984d4c
commit bc16642e6b
1 changed files with 1 additions and 1 deletions

View File

@ -1409,7 +1409,7 @@ func printHorizontalPodAutoscaler(hpa *extensions.HorizontalPodAutoscaler, w io.
reference,
target,
current,
minPods,
*minPods,
maxPods,
translateTimestamp(hpa.CreationTimestamp),
); err != nil {