-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Splitting build + deploy for testing purposes #276
Comments
Hey @ekimia , right now kaniko can build your image and save it to a tarball instead of deploying it (by setting the |
@priyawadhwa that's doable, but adds a lot of disk I/O unfortunately :( |
What about saving the tar.gz to /dev/null ? Is it possibile? It's a bit hacky but it should work |
What type of tests are you trying to run on the built image? Without docker, you won't be able to run anything on the image. |
Currently assuming |
Problem: Kaniko at least what i can determine doesnt have an option to build in 1 stage and deploy in another. In CI,it would be beneficial to build the image, run tests, then deploy. Is there something im overlooking?
The text was updated successfully, but these errors were encountered: