-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
set HPA replica values when workload overrides are set #1548
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
b2e9c80
set HPA replica values when workload overrides are set
ReToCode a60b709
add mapping for HPAs that are named differently to their target
ReToCode da912d9
add more test cases
ReToCode 8266b1f
rename deployment override to workload override
ReToCode File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* | ||
Copyright 2023 The Knative 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 common | ||
|
||
import ( | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
"k8s.io/apimachinery/pkg/util/sets" | ||
) | ||
|
||
// When a Podspecable has HPA, the replicas should be controlled by HPAs minReplicas instead of operator. | ||
// Hence, skip changing the spec.replicas for these Podspecables. | ||
func hasHorizontalPodAutoscaler(name string) bool { | ||
return sets.NewString( | ||
"webhook", | ||
"activator", | ||
"3scale-kourier-gateway", | ||
"eventing-webhook", | ||
"mt-broker-ingress", | ||
"mt-broker-filter", | ||
).Has(name) | ||
} | ||
|
||
// Maps a Podspecables name to the HPAs name. | ||
// Add overrides here, if your HPA is named differently to the workloads name, | ||
// if no override is defined, the name of the podspecable is used as HPA name. | ||
func getHPAName(podspecableName string) string { | ||
overrides := map[string]string{ | ||
"mt-broker-ingress": "broker-ingress-hpa", | ||
"mt-broker-filter": "broker-filter-hpa", | ||
} | ||
if v, ok := overrides[podspecableName]; ok { | ||
return v | ||
} else { | ||
return podspecableName | ||
} | ||
} | ||
|
||
// hpaTransform sets the minReplicas and maxReplicas of an HPA based on a replica override value. | ||
// If minReplica needs to be increased, the maxReplica is increased by the same value. | ||
func hpaTransform(u *unstructured.Unstructured, replicas int64) error { | ||
if u.GetKind() != "HorizontalPodAutoscaler" { | ||
return nil | ||
} | ||
|
||
min, _, err := unstructured.NestedInt64(u.Object, "spec", "minReplicas") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Do nothing if the HPA ships with even more replicas out of the box. | ||
if min >= replicas { | ||
return nil | ||
} | ||
|
||
if err := unstructured.SetNestedField(u.Object, replicas, "spec", "minReplicas"); err != nil { | ||
return err | ||
} | ||
|
||
max, found, err := unstructured.NestedInt64(u.Object, "spec", "maxReplicas") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Do nothing if maxReplicas is not defined. | ||
if !found { | ||
return nil | ||
} | ||
|
||
// Increase maxReplicas to the amount that we increased, | ||
// because we need to avoid minReplicas > maxReplicas happening. | ||
if err := unstructured.SetNestedField(u.Object, max+(replicas-min), "spec", "maxReplicas"); err != nil { | ||
return err | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/* | ||
Copyright 2023 The Knative 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 common | ||
|
||
import ( | ||
"testing" | ||
|
||
"k8s.io/api/autoscaling/v2beta1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
"k8s.io/client-go/kubernetes/scheme" | ||
util "knative.dev/operator/pkg/reconciler/common/testing" | ||
) | ||
|
||
func TestHpaTransform(t *testing.T) { | ||
cases := []struct { | ||
name string | ||
in *unstructured.Unstructured | ||
replicas int64 | ||
expected *unstructured.Unstructured | ||
err error | ||
}{{ | ||
name: "Object is not a HPA", | ||
in: makeUnstructuredDeployment(t, "not-a-hpa"), | ||
replicas: 5, | ||
expected: makeUnstructuredDeployment(t, "not-a-hpa"), | ||
err: nil, | ||
}, { | ||
name: "minReplicas same as override", | ||
in: makeUnstructuredHPA(t, "hpa", 1, 2), | ||
replicas: 1, | ||
expected: makeUnstructuredHPA(t, "hpa", 1, 2), | ||
err: nil, | ||
}, { | ||
name: "minReplicas lower than override", | ||
in: makeUnstructuredHPA(t, "hpa", 1, 2), | ||
replicas: 5, | ||
expected: makeUnstructuredHPA(t, "hpa", 5, 6), | ||
err: nil, | ||
}} | ||
|
||
for _, tc := range cases { | ||
t.Run(tc.name, func(t *testing.T) { | ||
|
||
err := hpaTransform(tc.in, tc.replicas) | ||
|
||
util.AssertDeepEqual(t, err, tc.err) | ||
util.AssertDeepEqual(t, tc.in, tc.expected) | ||
}) | ||
} | ||
} | ||
|
||
func TestGetHPAName(t *testing.T) { | ||
util.AssertEqual(t, getHPAName("mt-broker-ingress"), "broker-ingress-hpa") | ||
util.AssertEqual(t, getHPAName("activator"), "activator") | ||
} | ||
|
||
func makeUnstructuredHPA(t *testing.T, name string, minReplicas, maxReplicas int32) *unstructured.Unstructured { | ||
hpa := &v2beta1.HorizontalPodAutoscaler{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: name, | ||
}, | ||
Spec: v2beta1.HorizontalPodAutoscalerSpec{ | ||
MinReplicas: &minReplicas, | ||
MaxReplicas: maxReplicas, | ||
}, | ||
} | ||
|
||
result := &unstructured.Unstructured{} | ||
err := scheme.Scheme.Convert(hpa, result, nil) | ||
if err != nil { | ||
t.Fatalf("Could not create unstructured HPA: %v, err: %v", hpa, err) | ||
} | ||
|
||
return result | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice if we log something here for debugging reasons.