Rather than relying on a Git source pull
for a build, you can
can also start a build by directly pushing your source, which could be the
contents of a Git or SVN working directory, a set of prebuilt binary artifacts
you want to deploy, or a single file. This can be done by specifying one of the
following options for the start-build
command:
Option | Description |
---|---|
|
Specifies a directory that will be archived and used as a binary input for the build. |
|
Specifies a single file that will be the only file in the build source. The file is placed in the root of an empty directory with the same file name as the original file provided. |
|
Specifies a path to a local repository to use as the binary input for a build.
Add the |
When passing any of these options directly to the build, the contents are streamed to the build and override the current build source settings.
Note
|
Builds triggered from binary input will not preserve the source on the server, so rebuilds triggered by base image changes will use the source specified in the build configuration. |
For example, the following command sends the contents of a local Git repository
as an archive from the tag v2
and starts a build:
$ oc start-build hello-world --from-repo=../hello-world --commit=v2