forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 131
OCPBUGS-78990: Bump 1.35.3 to master #2633
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
Merged
openshift-merge-bot
merged 23 commits into
openshift:master
from
jubittajohn:rebase-v1.35.3
Mar 31, 2026
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
0a9d14b
Fix flaky TestApplyCRDuringCRDFinalization test
aviralgarg05 bd39991
fake client-go: un-deprecate NewSimpleClientset
pohly 2371267
add dockerized go cache to `make clean`
BenTheElder d05c506
Fix flake TestDeviceTaintRule test by adjusting event hanlder status …
Karthik-K-N 1c0c911
kubeadm: do not add learner member to etcd client endpoints
pacoxu 02115b6
Update CHANGELOG/CHANGELOG-1.35.md for v1.35.2
k8s-release-robot 946b7f7
Merge pull request #136387 from vikasbolla/automated-cherry-pick-of-#…
k8s-ci-robot 659d489
dra: stabilize DeviceBindingConditions BasicFlow by creating without-…
tsj-30 b9be60a
start scheduler after creating binding/non-binding slices
tsj-30 4e48345
Merge pull request #136929 from BenTheElder/1.35-clean-fix
k8s-ci-robot 61003ad
drop publishing rules from dependencies.yaml on release branch
BenTheElder 60ebb8a
Merge pull request #137366 from tsj-30/automated-cherry-pick-of-#1372…
k8s-ci-robot af6488c
Use localhost image reference in PodObservedGenerationTracking test
Chandan9112 a0e5f1a
Merge pull request #136903 from pohly/automated-cherry-pick-of-#13645…
k8s-ci-robot b57e146
cmd/kubeadm: ignore EINVAL error during unmount
fuweid d595aaf
Merge pull request #137047 from vikasbolla/automated-cherry-pick-of-#…
k8s-ci-robot 77d8b63
Merge pull request #137257 from ahrtr/automated-cherry-pick-of-#13725…
k8s-ci-robot fe6a745
Merge pull request #137382 from BenTheElder/no-rules
k8s-ci-robot f503429
Merge pull request #137400 from Chandan9112/automated-cherry-pick-of-…
k8s-ci-robot b6f632b
Merge pull request #137569 from fuweid/cp-1374942-135
k8s-ci-robot 6c1cd99
Release commit for Kubernetes v1.35.3
k8s-release-robot d305427
Merge tag 'v1.35.3' into release-4.22
jubittajohn 39a9d96
UPSTREAM: <drop>: hack/update-vendor.sh, make update and update image
jubittajohn 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Queueing the rule item first does not guarantee the status update runs first.
These lines only change enqueue order. Once
Run()uses multiple workers, a pod work item can still execute before the rule-status item after the mutex is released, so the promised “before evicting any pods” transition remains racy. The test workaround inpkg/controller/devicetainteviction/device_taint_eviction_test.goLines 2429-2431 confirms the same ordering problem. If that sequencing matters, it needs explicit serialization/prioritization instead of relying on shared-queue order alone.Also applies to: 1301-1307
🤖 Prompt for AI Agents