Skip to content

Conversation

@aviralgarg05
Copy link
Contributor

@aviralgarg05 aviralgarg05 commented Jan 7, 2026

Revisions with initialScale > 1 that are no longer referenced by any Route (routingState = 'reserve', mapped to Reachability = Unreachable) were previously unable to scale down to 0, causing resource waste when old revisions were replaced by new ones.

This change modifies the initialScale logic in scaler.go to ignore the initialScale constraint when a revision's Reachability is Unreachable. This allows revisions in reserve state to scale down to 0 immediately, freeing up resources promptly when they are no longer needed.

The fix adds a check for pa.Spec.Reachability != ReachabilityUnreachable before applying the initialScale constraint, ensuring that:

  • Revisions with routingState = 'reserve' can scale down to 0 immediately
  • The initialScale logic only applies to revisions that are still referenced by Routes (routingState = 'active')
  • Resources are freed promptly when old revisions are replaced

A new test case has been added to verify the behavior: revisions with initialScale > 1 and Reachability = Unreachable can now scale to 0.

Fixes #16260

Proposed Changes

Release Note

Allow unreachable revisions with initialScale > 1 to scale to 0

…to scale to 0

Revisions with initialScale > 1 that are no longer referenced by any
Route (routingState = 'reserve', mapped to Reachability = Unreachable)
were previously unable to scale down to 0, causing resource waste when
old revisions were replaced by new ones.

This change modifies the initialScale logic in scaler.go to ignore the
initialScale constraint when a revision's Reachability is Unreachable.
This allows revisions in reserve state to scale down to 0 immediately,
freeing up resources promptly when they are no longer needed.

The fix adds a check for pa.Spec.Reachability != ReachabilityUnreachable
before applying the initialScale constraint, ensuring that:
- Revisions with routingState = 'reserve' can scale down to 0 immediately
- The initialScale logic only applies to revisions that are still
  referenced by Routes (routingState = 'active')
- Resources are freed promptly when old revisions are replaced

A new test case has been added to verify the behavior: revisions with
initialScale > 1 and Reachability = Unreachable can now scale to 0.

Fixes knative#16260
@knative-prow knative-prow bot requested review from dsimansk and skonto January 7, 2026 13:55
@knative-prow
Copy link

knative-prow bot commented Jan 7, 2026

Welcome @aviralgarg05! It looks like this is your first PR to knative/serving 🎉

@knative-prow
Copy link

knative-prow bot commented Jan 7, 2026

Hi @aviralgarg05. Thanks for your PR.

I'm waiting for a github.com member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@knative-prow knative-prow bot added needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/S Denotes a PR that changes 10-29 lines, ignoring generated files. labels Jan 7, 2026
@dprotaso
Copy link
Member

/ok-to-test

@knative-prow knative-prow bot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Jan 18, 2026
@codecov
Copy link

codecov bot commented Jan 18, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 80.14%. Comparing base (09e59ec) to head (acd430d).
⚠️ Report is 27 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #16327      +/-   ##
==========================================
+ Coverage   80.11%   80.14%   +0.03%     
==========================================
  Files         215      216       +1     
  Lines       13391    13422      +31     
==========================================
+ Hits        10728    10757      +29     
+ Misses       2304     2298       -6     
- Partials      359      367       +8     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@dprotaso
Copy link
Member

/lgtm
/approve

thanks for the change!

@knative-prow knative-prow bot added the lgtm Indicates that a PR is ready to be merged. label Jan 21, 2026
@knative-prow
Copy link

knative-prow bot commented Jan 21, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: aviralgarg05, dprotaso

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@knative-prow knative-prow bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jan 21, 2026
@knative-prow knative-prow bot merged commit bc80471 into knative:main Jan 21, 2026
94 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/S Denotes a PR that changes 10-29 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Revisions with initialScale > 1 that are no longer referenced by any Route cannot scale down to 0

2 participants