Merge pull request #5036 from grosser/grosser/join

use strings.Join to build list of names
This commit is contained in:
Kubernetes Prow Robot 2022-08-10 02:06:31 -07:00 committed by GitHub
commit 07ea116616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 15 deletions

View File

@ -17,10 +17,10 @@ limitations under the License.
package cloudprovider
import (
"bytes"
"fmt"
"k8s.io/apimachinery/pkg/util/sets"
"math"
"strings"
)
// ResourceLimiter contains limits (max, min) for resources (cores, memory etc.).
@ -82,12 +82,9 @@ func (r *ResourceLimiter) HasMaxLimitSet(resourceName string) bool {
}
func (r *ResourceLimiter) String() string {
var buffer bytes.Buffer
var resourceDetails = []string{}
for _, name := range r.GetResources() {
if buffer.Len() > 0 {
buffer.WriteString(", ")
}
buffer.WriteString(fmt.Sprintf("{%s : %d - %d}", name, r.GetMin(name), r.GetMax(name)))
resourceDetails = append(resourceDetails, fmt.Sprintf("{%s : %d - %d}", name, r.GetMin(name), r.GetMax(name)))
}
return buffer.String()
return strings.Join(resourceDetails, ", ")
}

View File

@ -17,7 +17,6 @@ limitations under the License.
package core
import (
"bytes"
"fmt"
"math"
"strings"
@ -585,14 +584,11 @@ func ScaleUp(context *context.AutoscalingContext, processors *ca_processors.Auto
}
}
if len(targetNodeGroups) > 1 {
var buffer bytes.Buffer
for i, ng := range targetNodeGroups {
if i > 0 {
buffer.WriteString(", ")
}
buffer.WriteString(ng.Id())
var names = []string{}
for _, ng := range targetNodeGroups {
names = append(names, ng.Id())
}
klog.V(1).Infof("Splitting scale-up between %v similar node groups: {%v}", len(targetNodeGroups), buffer.String())
klog.V(1).Infof("Splitting scale-up between %v similar node groups: {%v}", len(targetNodeGroups), strings.Join(names, ", "))
}
}
scaleUpInfos, typedErr := processors.NodeGroupSetProcessor.BalanceScaleUpBetweenGroups(