-
Notifications
You must be signed in to change notification settings - Fork 25
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
propagate labels from tortoise to HPA/VPA managed by tortoise #432
base: main
Are you sure you want to change the base?
Conversation
d7bfcdc
to
b4ebce4
Compare
#433 will fix the ci |
609ed51
to
ece642a
Compare
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.
can you add a new test case or edit existing test case in the controller level test to ensure this behaviour?
Signed-off-by: minhthong582000 <[email protected]>
ece642a
to
ae81323
Compare
Signed-off-by: minhthong582000 <[email protected]>
It("TortoisePhaseInitializing", func() { | ||
It("TortoisePhaseInitializing with horizontalPodAutoscalerName configured", func() { | ||
runTest(filepath.Join("testdata", "reconcile-for-the-single-container-pod-initializing")) | ||
}) | ||
It("TortoisePhaseInitializing without horizontalPodAutoscalerName configured", func() { | ||
runTest(filepath.Join("testdata", "reconcile-for-the-single-container-pod-managed-hpa-initializing")) | ||
}) |
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.
These test cases are added/reused to cover scenarios where HPA/VPA is being initialized
@@ -474,7 +477,7 @@ var _ = Describe("Test TortoiseController", func() { | |||
}) | |||
}) | |||
Context("mutable AutoscalingPolicy", func() { | |||
It("Tortoise get Horizontal and create HPA", func() { | |||
It("Tortoise get Horizontal and create HPA (with the same labels)", func() { |
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.
Same as above
@AVSBharadwaj @jrbangit @AdityaK011 Do you want to take a look, as a reviewing training? |
What this PR does / why we need it:
Handle label propagation for Tortoise-managed HPA/VPA to ensure consistent across all Kubernetes resources, which allows us to attribute resources by teams or projects, or manage logical links between resources. This also help us to have monitoring and reporting based on labels.
Which issue(s) this PR fixes:
Implements #430
Special notes for your reviewer:
N/A