-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
add additional-images flag to build command #2159
Conversation
Add a way to specify additional images to pull when running kind build node-image
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: dkoshkin The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Please file a feature request and discuss a design first: https://kind.sigs.k8s.io/docs/contributing/getting-started/#4-reaching-out Some questions to consider:
EDIT: We are also looking to stabilize the CLI, APIs, etc., so we want to consider future usage etc. before adding features, so we can avoid needing to make a breaking change to it to support the full set of use cases. |
Hi @BenTheElder thanks for the quick reply! Sorry should have dug around the docs more to find the contributing process, as you may have guessed this is my first attempt at a contribution to kind 😰 I created a feature ticket #2160 so I can close this and move the discussion there? |
@dkoshkin: The following tests failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
No worries! We need to put more effort into surfacing this and improving the process 😅 Apologies in advance for the scattered response latency, we're trying to wrap up some things for the next release and all of us work on other projects as well (upstream kubernetes in particular). I know Antonio and I also have a little bit of time out / vacation intermittently in the next two weeks. |
@dkoshkin: PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
thanks again for the PR! tentatively closing in favor of the other approach |
A solution for #2063
Add a way to specify additional images to pull when running
kind build node-image
with a new flag--additional-images
.My use-case is to have a
kind
image that is used in an air-gapped cluster that includes a few additional images.There is no easy way to extend the existing
kindest/node
images (please correct me here if there is some process),kind load
is an option but its less desirable for my use case since it would require to package and ship around multiple images instead of just the onekindest/node
image.