-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kind build node-image: Support Docker v25.0.1
`docker save` in Docker v25 produces Docker/OCI dual-format archives: - `repositories`, `manifest.json`: for legacy Docker format - `oci-layout`, `index.json` (and blobs): for OCI format However, `pkg/build/nodeimage/internal/container/docker.EditArchive` did not support rewriting OCI Index. This was resulting in producing broken images with Docker v25. See kubernetes/kubernetes issue 122894 NOTE: This is still incompatible with Docker v25.0.0 due to moby/moby issue 47150. The issue was fixed in v25.0.1. Signed-off-by: Akihiro Suda <[email protected]>
- Loading branch information
1 parent
ad3437c
commit 867cbde
Showing
3 changed files
with
59 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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 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 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