-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Comparing changes
Open a pull request
base repository: kubernetes-sigs/controller-runtime
base: v0.19.0
head repository: kubernetes-sigs/controller-runtime
compare: v0.19.3
- 20 commits
- 18 files changed
- 9 contributors
Commits on Sep 16, 2024
-
Verify PR titles with shell script
Signed-off-by: Stefan Büringer buringerst@vmware.com
Configuration menu - View commit details
-
Copy full SHA for 15e87cb - Browse repository at this point
Copy the full SHA 15e87cbView commit details -
Merge pull request #2947 from k8s-infra-cherrypick-robot/cherry-pick-…
…2944-to-release-0.19 [release-0.19] 🌱 Verify PR titles with shell script
Configuration menu - View commit details
-
Copy full SHA for 525f793 - Browse repository at this point
Copy the full SHA 525f793View commit details
Commits on Sep 18, 2024
-
Preserve TypeMeta for PartialObjectMeta resources
This updates the fake client to retain the PartialObjectMeta TypeMeta when getting resources.
Configuration menu - View commit details
-
Copy full SHA for f0e55af - Browse repository at this point
Copy the full SHA f0e55afView commit details
Commits on Sep 21, 2024
-
Merge pull request #2951 from k8s-infra-cherrypick-robot/cherry-pick-…
…2949-to-release-0.19 [release-0.19] 🐛 Fakeclient: preserve TypeMeta for PartialObjectMeta resources
Configuration menu - View commit details
-
Copy full SHA for 22d9eab - Browse repository at this point
Copy the full SHA 22d9eabView commit details
Commits on Sep 27, 2024
-
pr-verify: use env var for passing the PR title
Co-Authored-By: Aviv Keller <redyetidev@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b400366 - Browse repository at this point
Copy the full SHA b400366View commit details -
Merge pull request #2962 from k8s-infra-cherrypick-robot/cherry-pick-…
…2961-to-release-0.19 [release-0.19] 🌱 pr-verify: use env var for passing the PR title
Configuration menu - View commit details
-
Copy full SHA for d32b491 - Browse repository at this point
Copy the full SHA d32b491View commit details -
pr-verify: use env var for passing the PR title
Co-Authored-By: Aviv Keller <redyetidev@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 465b62a - Browse repository at this point
Copy the full SHA 465b62aView commit details -
Merge pull request #2965 from k8s-infra-cherrypick-robot/cherry-pick-…
…2964-to-release-0.19 [release-0.19] 🌱 pr-verify: use env var for passing the PR title
Configuration menu - View commit details
-
Copy full SHA for 409ae31 - Browse repository at this point
Copy the full SHA 409ae31View commit details
Commits on Oct 11, 2024
-
Signed-off-by: Stefan Büringer buringerst@vmware.com
Configuration menu - View commit details
-
Copy full SHA for f883b25 - Browse repository at this point
Copy the full SHA f883b25View commit details -
Merge pull request #2974 from k8s-infra-cherrypick-robot/cherry-pick-…
…2973-to-release-0.19 [release-0.19] 🌱 Fix PR verify action
Configuration menu - View commit details
-
Copy full SHA for aa14005 - Browse repository at this point
Copy the full SHA aa14005View commit details
Commits on Oct 19, 2024
-
bug: Fakeclient: Fix TOCTOU races
The fake client currently has a number of time of check time of use races, where it fetches an object to determine what to do in a mutating operation. The problem is that the object might change in between fetching it and doing the mutating operation. Most notably, this happens when: * Patching is done in parallel. Only one of the patches will succeed, the other ones will fail with a conflict * Updates of objects that allow unconditional updates: All updates will succeed, but not all of them will increment the resource version (i.E dirty writes for the RV) * An update for an object that allows createOnUpdate races with a create or delete * A DeleteAllOf call races with Delete calls * A scale update races with a normal update This change: * Adds tests for all of these cases * Fixes them by adding a lock around the write operations, including their read part, if any
Configuration menu - View commit details
-
Copy full SHA for 4421425 - Browse repository at this point
Copy the full SHA 4421425View commit details -
Merge pull request #2992 from k8s-infra-cherrypick-robot/cherry-pick-…
…2980-to-release-0.19 [release-0.19] 🐛 Fakeclient: Fix TOCTOU races
Configuration menu - View commit details
-
Copy full SHA for 013f46f - Browse repository at this point
Copy the full SHA 013f46fView commit details
Commits on Nov 21, 2024
-
[release-0.19] ✨ Add EnableWatchBookmarks option to cache informers (#…
…3018) * Ensure all WatchFunc enable watch and boomarks AllowWatchBookmarks is generally pretty safe to enable as it has been available in Kuberentes for a long while, and the server ignores the flag if it doesn't implement it (per docs). Signed-off-by: Vince Prignano <vince@prigna.com> * Defaults to false for 0.19 Signed-off-by: Vince Prignano <vince@prigna.com> --------- Signed-off-by: Vince Prignano <vince@prigna.com> Co-authored-by: Vince Prignano <vince@prigna.com>
Configuration menu - View commit details
-
Copy full SHA for bfd1cf9 - Browse repository at this point
Copy the full SHA bfd1cf9View commit details
Commits on Nov 30, 2024
-
warning: Use leader elector with client timeout
This change makes the leader elector use a client that internally has a smaller timeout than the renew deadline, which avoids a situation where a single request timing out makes us lose the leader lease.
Configuration menu - View commit details
-
Copy full SHA for 0170742 - Browse repository at this point
Copy the full SHA 0170742View commit details
Commits on Dec 2, 2024
-
🐛 Fix RenewDeadline typo in leader election
Signed-off-by: Vince Prignano <vince@prigna.com>
Configuration menu - View commit details
-
Copy full SHA for 4bc3811 - Browse repository at this point
Copy the full SHA 4bc3811View commit details -
🌱 Make using leader elector with client timeout non-breaking
This change is a follow-up to the one that introduces the usage of the leader-elector with client timeout. That change was breaking because it introduces a new option and always assumed it was set. This change makes us only use that option if its actually set.
Configuration menu - View commit details
-
Copy full SHA for 2a0ce59 - Browse repository at this point
Copy the full SHA 2a0ce59View commit details -
[release-0.19] 🐛 Refactor certificate watcher to use polling, instead…
… of fsnotify (#3023) * Reestablish watch for the certificate paths * Remove fsnotify and use cached read watcher * Simplify return * 🐛Fix certwatcher test to be backwards compatible --------- Co-authored-by: Maxim Muzafarov <m.muzafarov@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for e727239 - Browse repository at this point
Copy the full SHA e727239View commit details -
Merge pull request #3031 from k8s-infra-cherrypick-robot/cherry-pick-…
…3028-to-release-0.19 [release-0.19] 🐛 Use leader elector with client timeout
Configuration menu - View commit details
-
Copy full SHA for 0823530 - Browse repository at this point
Copy the full SHA 0823530View commit details -
add watch deprecated to certwatcher
Signed-off-by: Vince Prignano <vince@prigna.com>
Configuration menu - View commit details
-
Copy full SHA for 2085acc - Browse repository at this point
Copy the full SHA 2085accView commit details -
Merge pull request #3037 from kubernetes-sigs/backport019-watch
🌱 add deprecated Watch() to certwatcher
Configuration menu - View commit details
-
Copy full SHA for 3e66810 - Browse repository at this point
Copy the full SHA 3e66810View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.19.0...v0.19.3