Revise Kubernetes images for Docker Desktop#24086
Open
andrewb-ontheinternet wants to merge 2 commits intodocker:mainfrom
Open
Revise Kubernetes images for Docker Desktop#24086andrewb-ontheinternet wants to merge 2 commits intodocker:mainfrom
andrewb-ontheinternet wants to merge 2 commits intodocker:mainfrom
Conversation
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Update Kubernetes images pulled by Docker Desktop during a kubeadm installation
5cae97b to
84bcb0d
Compare
84bcb0d to
784a60d
Compare
Contributor
There was a problem hiding this comment.
Documentation Review Summary
I've reviewed the changes in this PR and found no style guide violations. The updated Kubernetes image list and new CLI command references are clear, accurate, and follow the Docker documentation standards.
What was reviewed:
- ✅ Updated image list (docker.io/docker/desktop-kubernetes-* images)
- ✅ New NOTE callout about
docker desktop kubernetes images listcommand - ✅ Modified step 2 with alternative methods for viewing images
Style guide compliance:
- Version number formatting is consistent with STYLE.md (both "versions 4.44" and "v4.44" are acceptable)
- Callout syntax follows COMPONENTS.md guidelines
- Link formatting is correct
- List structure is properly formatted
The documentation changes are helpful and technically accurate. Good work!
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Update the list of Kuberenetes images pulled for a kubeadm installation. Also add references to the new-ish CLI list images command.
The original listed images are not entirely correct:
docker.io/registry.k8s.ioregistry prefix is redundant, it should just beregistry.k8s.io/*registry.k8s.ioimages are what kubeadm requires for installation, however Docker Desktop will pull mirrored copies from Docker registry + repository (docker.io/docker) and internally re-tag the images back to the original images required by kubeadmThe
desktop kubernetes images listCLI command can be used to print out the images and their tags required by the current Docker Desktop installation. Of particular interest might be the programmatic outputdesktop kubernetes images list --format=jsonwhich can be used for automation purposes. The tags in the image list output are tied to the Docker Desktop version in which the commands are run, that is to say, it is not possible to find out all possible Kubernetes image tags (past or future? 😆) from one Docker Desktop version (the Release Notes would be a better place to check image tag changes).Related issues or tickets
Reviews