And coming in 3.11 is an experimental command that lets you add a tar file as a new layer in an image (or as a new “scratch” image), so it’s even easier to tar up your source code as an image, and have builds trigger off the image change. The command is “oc image append —to=<registry> [layer as tar.gz]” and does not require a local container runtime.
On Sep 10, 2018, at 9:42 AM, Ben Parees <[email protected]> wrote: On Mon, Sep 10, 2018 at 4:25 AM, Jean-Francois Maury <[email protected]> wrote: > Hello, > > I have a question about binary builds. Once a binary build has been > created through the instanciatebinary operation, can we use the clone > operation to respawn a new build ? Will it use the previous input ? > Unfortunately not. The content you upload to the build is streamed into that build instance but not preserved anywhere, so it is not possible to "rerun" that build w/o supplying the binary input again. If you want a rerunnable binary build I would suggest doing a chained build in which you: 1) perform a binary build that layers your uploaded content into an image 2) perform the "real" build which uses the "input from an image" feature to extract the content from the image you produced in (1) and perform the build. You can then rerun build (2) at will since the image containing the input content will still exist. > > Thanks > > -- > > JEFF MAURY > > Red Hat > > <https://www.redhat.com/> > > [email protected] > <https://red.ht/sig> > <https://redhat.com/summit> > @redhatjobs <https://twitter.com/redhatjobs> redhatjobs > <https://www.facebook.com/redhatjobs/> @redhatjobs > <https://instagram.com/redhatjobs> > > _______________________________________________ > users mailing list > [email protected] > http://lists.openshift.redhat.com/openshiftmm/listinfo/users > > -- Ben Parees | OpenShift _______________________________________________ users mailing list [email protected] http://lists.openshift.redhat.com/openshiftmm/listinfo/users
_______________________________________________ users mailing list [email protected] http://lists.openshift.redhat.com/openshiftmm/listinfo/users
