-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Prevent automatic image building in kube play #13285
Comments
I think you can use |
Really? I didn't realize the flag took an argument. I'll try. |
All bool flags can be used with |
(I haven't found time to try yet) Well, in
That doesn't seem to really honor the |
@Korijn I think above PR should close this. I think |
Sure, thanks ! |
/kind feature
Description
In #11180 support was added to build images automatically in
podman play kube
.However, this is undesirable if your images cannot be built without additional custom commands such as build secrets/arguments.
Our project's repository structure just happens to be organized according to the structure described the command's reference:
So, if no prebuilt image is available, and can be pulled, podman still decides to try and build, and of course fail.
The only workaround is to manually pull the individual images beforehand, or build them manually. Annoying and time consuming!
This is on
podman version 3.4.2
.I see a couple of options:
--build-missing
to opt-in--no-build
The text was updated successfully, but these errors were encountered: