Skip to content

Commit

Permalink
example of post-processor to have integer CPU
Browse files Browse the repository at this point in the history
  • Loading branch information
dbenque committed Oct 17, 2022
1 parent 95698da commit 12ee968
Show file tree
Hide file tree
Showing 3 changed files with 200 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package routines

import (
apiv1 "k8s.io/api/core/v1"
vpa_types "k8s.io/autoscaler/vertical-pod-autoscaler/pkg/apis/autoscaling.k8s.io/v1"
"k8s.io/autoscaler/vertical-pod-autoscaler/pkg/recommender/model"
"math"
"strings"
)

// integerCPUPostProcessor ensure that the policy is applied to recommendation
// it applies policy for fields: cpuAsInteger
type integerCPUPostProcessor struct{}

const (
// The user interface for that post processor is an annotation with the following format:
// vpa-post-processor.kubernetes.io/{containerName}_integerCPU=true

vpaPostProcessorPrefix = "vpa-post-processor.kubernetes.io/"
vpaPostProcessorIntegerCPUSuffix = "_integerCPU"
vpaPostProcessorIntegerCPUValue = "true"
)

var _ RecommendationPostProcessor = &integerCPUPostProcessor{}

// Process apply the capping post-processing to the recommendation.
func (c integerCPUPostProcessor) Process(vpa *model.Vpa, recommendation *vpa_types.RecommendedPodResources, policy *vpa_types.PodResourcePolicy) *vpa_types.RecommendedPodResources {

amendedRecommendation := recommendation.DeepCopy()

process := func(recommendation apiv1.ResourceList) {
for resourceName, recommended := range recommendation {
if resourceName != apiv1.ResourceCPU {
continue
}
v := float64(recommended.MilliValue()) / 1000
r := int64(math.Round(v))
recommended.Set(r)
recommendation[resourceName] = recommended
}
}

for key, value := range vpa.Annotations {
containerName := extractContainerName(key, vpaPostProcessorPrefix, vpaPostProcessorIntegerCPUSuffix)
if containerName == "" || value != vpaPostProcessorIntegerCPUValue {
continue
}

for _, r := range amendedRecommendation.ContainerRecommendations {
if r.ContainerName != containerName {
continue
}
process(r.Target)
process(r.LowerBound)
process(r.UpperBound)
process(r.UncappedTarget)
}
}
return amendedRecommendation
}

// extractContainerName return the container name for the feature based on annotation key
// if the return value is empty that means that the key does not match
func extractContainerName(key, prefix, suffix string) string {
if !strings.HasPrefix(key, prefix) {
return ""
}
if !strings.HasSuffix(key, suffix) {
return ""
}

return key[len(prefix) : len(key)-len(suffix)]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
package routines

import (
"github.com/stretchr/testify/assert"
v1 "k8s.io/api/core/v1"
vpa_types "k8s.io/autoscaler/vertical-pod-autoscaler/pkg/apis/autoscaling.k8s.io/v1"
"k8s.io/autoscaler/vertical-pod-autoscaler/pkg/recommender/model"
"k8s.io/autoscaler/vertical-pod-autoscaler/pkg/utils/test"
"testing"
)

func Test_extractContainerName(t *testing.T) {
tests := []struct {
name string
key string
prefix string
suffix string
want string
}{
{
name: "empty",
key: "",
prefix: "",
suffix: "",
want: "",
},
{
name: "no match",
key: "abc",
prefix: "z",
suffix: "x",
want: "",
},
{
name: "match",
key: "abc",
prefix: "a",
suffix: "c",
want: "b",
},
{
name: "real",
key: vpaPostProcessorPrefix + "kafka" + vpaPostProcessorIntegerCPUSuffix,
prefix: vpaPostProcessorPrefix,
suffix: vpaPostProcessorIntegerCPUSuffix,
want: "kafka",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
assert.Equalf(t, tt.want, extractContainerName(tt.key, tt.prefix, tt.suffix), "extractContainerName(%v, %v, %v)", tt.key, tt.prefix, tt.suffix)
})
}
}

func Test_integerCPUPostProcessor_Process(t *testing.T) {
tests := []struct {
name string
vpa *model.Vpa
recommendation *vpa_types.RecommendedPodResources
want *vpa_types.RecommendedPodResources
}{
{
name: "2 containers",
vpa: &model.Vpa{Annotations: map[string]string{
vpaPostProcessorPrefix + "container1" + vpaPostProcessorIntegerCPUSuffix: "true",
}},
recommendation: &vpa_types.RecommendedPodResources{
ContainerRecommendations: []vpa_types.RecommendedContainerResources{
test.Recommendation().WithContainer("container1").WithTarget("8.6", "200").GetContainerResources(),
test.Recommendation().WithContainer("container2").WithTarget("8.2", "200").GetContainerResources(),
},
},
want: &vpa_types.RecommendedPodResources{
ContainerRecommendations: []vpa_types.RecommendedContainerResources{
test.Recommendation().WithContainer("container1").WithTarget("9", "200").GetContainerResources(),
test.Recommendation().WithContainer("container2").WithTarget("8.2", "200").GetContainerResources(),
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := integerCPUPostProcessor{}
got := c.Process(tt.vpa, tt.recommendation, nil)
assert.Equalf(t, reScale3(tt.want), reScale3(got), "Process(%v, %v, nil)", tt.vpa, tt.recommendation)
})
}
}

func reScale3(recommended *vpa_types.RecommendedPodResources) *vpa_types.RecommendedPodResources {

scale3 := func(rl v1.ResourceList) {
for k, v := range rl {
v.SetMilli(v.MilliValue())
rl[k] = v
}
}

for _, r := range recommended.ContainerRecommendations {
scale3(r.LowerBound)
scale3(r.Target)
scale3(r.UncappedTarget)
scale3(r.UpperBound)
}
return recommended
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ type KnownPostProcessors string
const (
// Capping is post-processor name to ensure that recommendation stays within [MinAllowed-MaxAllowed] range
Capping KnownPostProcessors = "capping"
// IntegerCPU is post-processor name to ensure that CPU is an integer. This allows application that are using static CPU allocation to use VPA
IntegerCPU KnownPostProcessors = "integerCPU"
)

// RecommendationPostProcessor can amend the recommendation according to the defined policies
Expand Down Expand Up @@ -57,6 +59,8 @@ func (f *RecommendationPostProcessorFactory) Build() ([]RecommendationPostProces
switch name {
case Capping:
processors = append(processors, &cappingPostProcessor{})
case IntegerCPU:
processors = append(processors, &integerCPUPostProcessor{})
default:
return nil, fmt.Errorf("unknown Post Processor: %s", name)
}
Expand Down

0 comments on commit 12ee968

Please sign in to comment.