-
Notifications
You must be signed in to change notification settings - Fork 165
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
Allow using builder image directly in Image like it's possible in Build. #1376
Comments
I don't think we have to much appetite for this change, because it would negate the biggest value-add of the Image resource: the ability to automatically rebase multiple images via a single change in the builder. The reason the builder is an entire CRD is that on a cluster with many, many images, every single one of them would get rebuilt/rebased if the underlying builder is changed. This can be caused by a change to the ClusterStack, ClusterStore, and/or [Cluster]Buildpacks, and this is only possible because the builder is a CRD that we can model and watch. If you want something to just watch a git repo and generate new Builds on commit, a CronJob might be a better solution |
The part is not clear to me from the documentation: The concept of tracking a change on a builder is great, but can I track changes on a builder created by a third party? |
Nope, see #1242 |
I've created a
Build
and I'm able to execute and push my docker image.I assumed the next step would be to create an
Image
and have builds execute when a change appeared. From the docs:But unlike
Build
,Image
does not allow to just reference a builder by image:The minimum I would need to define to have an
Image
working seems quite far fromBuild
.Would it be possible to have
Image
working just likeBuild
but tracking changes?The text was updated successfully, but these errors were encountered: