-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Comparing changes
Open a pull request
base repository: cri-o/cri-o
base: main
head repository: cri-o/cri-o
compare: release-1.33
- 20 commits
- 26 files changed
- 7 contributors
Commits on May 21, 2025
-
sandbox: use created/stopped instead of infra container for readiness
As we hit cases of deadlock when a sandbox is stuck stopping Signed-off-by: Peter Hunt <pehunt@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 7ca5aa7 - Browse repository at this point
Copy the full SHA 7ca5aa7View commit details
Commits on May 27, 2025
-
Merge pull request #9214 from openshift-cherrypick-robot/cherry-pick-…
…9188-to-release-1.33 [release-1.33] RFC: sandbox: use created/stopped instead of infra container for readiness
Configuration menu - View commit details
-
Copy full SHA for 24b9f1f - Browse repository at this point
Copy the full SHA 24b9f1fView commit details
Commits on Jun 1, 2025
-
Signed-off-by: Kubernetes Release Robot <k8s-release-robot@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ce6f724 - Browse repository at this point
Copy the full SHA ce6f724View commit details
Commits on Jun 2, 2025
-
Improve iptables error handling when there's no iptables binary
If `iptables --version` failed, iptables.New() would log a warning and assume that the problem was that you had an implausibly ancient version of iptables installed. Change it to instead assume that the problem is that you don't have iptables installed at all (and only log at debug). Signed-off-by: Dan Winship <danwinship@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 219b88a - Browse repository at this point
Copy the full SHA 219b88aView commit details -
Redo metaHostportManager construction, fix bug
Add an internal constructor so that the unit tests share the same logic as the real constructor, and fix it to handle nil sub-managers correctly. Signed-off-by: Dan Winship <danwinship@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for 4759426 - Browse repository at this point
Copy the full SHA 4759426View commit details -
Merge pull request #9241 from openshift-cherrypick-robot/cherry-pick-…
…9222-to-release-1.33 [release-1.33] Fix HostPort manager when one backend is unavailable
Configuration menu - View commit details
-
Copy full SHA for 30a69d9 - Browse repository at this point
Copy the full SHA 30a69d9View commit details -
Merge pull request #9237 from cri-o/release-1.33.1
Bump version to 1.33.1
Configuration menu - View commit details
-
Copy full SHA for de5978d - Browse repository at this point
Copy the full SHA de5978dView commit details
Commits on Jun 26, 2025
-
server: only append default masked paths if any paths are specified
otherwise, we break umasked proc mount type feature Signed-off-by: Peter Hunt <pehunt@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for f4dfced - Browse repository at this point
Copy the full SHA f4dfcedView commit details
Commits on Jun 27, 2025
-
Merge pull request #9288 from openshift-cherrypick-robot/cherry-pick-…
…9285-to-release-1.33 [release-1.33] server: only append default masked paths if any paths are specified
Configuration menu - View commit details
-
Copy full SHA for c318bad - Browse repository at this point
Copy the full SHA c318badView commit details
Commits on Jul 1, 2025
-
Signed-off-by: Kubernetes Release Robot <k8s-release-robot@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8f3f8c8 - Browse repository at this point
Copy the full SHA 8f3f8c8View commit details -
Merge pull request #9304 from cri-o/release-1.33.2
Bump version to 1.33.2
Configuration menu - View commit details
-
Copy full SHA for 0da1b7c - Browse repository at this point
Copy the full SHA 0da1b7cView commit details
Commits on Jul 3, 2025
-
dependencies.yaml: bump/sync internal version.
Signed-off-by: Krisztian Litkey <krisztian.litkey@intel.com>
Configuration menu - View commit details
-
Copy full SHA for 278712a - Browse repository at this point
Copy the full SHA 278712aView commit details
Commits on Jul 4, 2025
-
fix deadlock when the container is in uninterruptible sleep
Signed-off-by: Ayato Tokubi <atokubi@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for ea50bd3 - Browse repository at this point
Copy the full SHA ea50bd3View commit details -
Merge pull request #9297 from klihub/fixes/release-1.33/bump-verified…
…-internal-version dependencies.yaml: bump/sync internal version.
Configuration menu - View commit details
-
Copy full SHA for 15d8b7e - Browse repository at this point
Copy the full SHA 15d8b7eView commit details -
Merge pull request #9320 from openshift-cherrypick-robot/cherry-pick-…
…9256-to-release-1.33 [release-1.33]: OCPBUGS-55485: Fix deadlock when stopping uninterruptible container
Configuration menu - View commit details
-
Copy full SHA for cb609a5 - Browse repository at this point
Copy the full SHA cb609a5View commit details
Commits on Jul 11, 2025
-
server: handle missing network namespace gracefully during networkStop
After host reboot, network namespaces are destroyed but CRI-O attempts to clean them up during pod sandbox destruction, causing CNI plugin failures and preventing pods from restarting properly. The fix ensures pods can restart normally after host reboots. Signed-off-by: Sohan Kunkerkar <sohank2602@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8daef88 - Browse repository at this point
Copy the full SHA 8daef88View commit details -
test: add coverage for network recovery after reboot with destroyed n…
…etns Signed-off-by: Sohan Kunkerkar <sohank2602@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ff0ca8f - Browse repository at this point
Copy the full SHA ff0ca8fView commit details -
test: use quay.io instead of registry.fedoraproject.org
Signed-off-by: Sohan Kunkerkar <sohank2602@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0ba1262 - Browse repository at this point
Copy the full SHA 0ba1262View commit details -
contrib/test/ci: skip network recovery after reboot test for kata
Kata VMs use real infra containers that persist in storage, unlike normal containers that use spoofed infra containers. This fundamental architectural difference means the 'Network recovery after reboot with destroyed netns' test scenario doesn't apply to Kata VMs in the same way. Signed-off-by: Sohan Kunkerkar <sohank2602@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for e3326cb - Browse repository at this point
Copy the full SHA e3326cbView commit details -
Merge pull request #9337 from openshift-cherrypick-robot/cherry-pick-…
…9301-to-release-1.33 [release-1.33] : server: handle missing network namespace gracefully during networkStop
Configuration menu - View commit details
-
Copy full SHA for fcb351d - Browse repository at this point
Copy the full SHA fcb351dView 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 main...release-1.33