commit | 10d7a86ee006950562506db2ba38ff098262df88 | [log] [tgz] |
---|---|---|
author | Carmelo Cascone <carmelo@opennetworking.org> | Thu Feb 04 15:53:58 2021 -0800 |
committer | Carmelo Cascone <carmelo@opennetworking.org> | Thu Feb 04 15:53:58 2021 -0800 |
tree | 7e8f06e5d841327d237a3c076991b2c903afdd41 | |
parent | 546d913fd0cdc859124a546f4bd47f0afa3ba533 [diff] |
Remove all references to fabric-tofino from tost image Transition to fabric-tna has been completed. We no longer deploy fabric-tofino pipeconfs. Change-Id: Ia605f5f5ea55a55039a22af73a57c521fa5b1c3f
Docker build environment capable of producing a version of ONOS and needed apps that can run with TOST. Typically the ONOS restful api would be used to include apps after ONOS is started.
We provide multiple build targets for the Makefile. Versions of the components are defined in Makefile.vars.*
files; stable
version points to well known stable commits and master
branch points to ONOS master and to the tip of the TOST components. DOCKER_TAG is used to select which version to build, by default points to stable
.
onos-build
is used to build a specialized Docker image of ONOS (tost-onos
) that will contain only the apps needed by TOST. It depends on onos
target, which is used to setup the onos
workspace for the build. It clones onos
if it does not exist in the workspace, it will try to checkout the ONOS_VERSION first and in case of failure will try to download the patchset from remote repository. ONOS_VERSION is defined in Makefile.vars.DOCKER_TAG
file, overriding the variable at run time it is possible to build a different version of ONOS.
# Build a tost-onos image from the current workspace. make onos-build
# Build a tost-onos image from the tip of the onos-2.2 branch. make ONOS_VERSION=onos-2.2 onos-build
# Build a tost-onos image from the review 12345. make ONOS_VERSION=ref/changes/72/12345/1 onos-build
Makefile will build also the apps. These are the apps currently integrated in the script: trellis-control, trellis-t3, up4, kafka-onos and fabric-tna. For each one, there is a build target.
appname-build
builds with the version specified in the Makefile.vars.DOCKER_TAG
, using the following sources in order: (1) Maven central (for released versions or snapshots); (2) Local source code (for local branch not yet pushed); (3) Gerrit/Github (for pending review in the form of refs/changes/... or pending pull request). As a prerequisite, the script prepares mvn_settings.xml
file, creates the local-apps
folder and checks out the code if it is not present (relies on appname
target). APPNAME_VERSION, defined in Makefile.vars.DOCKER_TAG
file, can be overridden at runtime.
# Build trellis-control from the source code. make trellis-control-build
# Build up4 app from the source code. make up4-build
apps-build
is an additional target that automates the build process of the apps building one by one all the apps.
# Build one by one all the apps. make apps-build
Finally, the last build target is tost-build
. It builds a tost
monolithic image using as base the tost-onos
image. It basically adds the external apps used by TOST. It does not activate all the required apps. This step is performed during the deployment and the required apps are specified in the chart.
# Build a tost image from the current workspace. make tost-build
Use apps
or appname
targets to downloads commits, files, and refs from remotes.
# Update one by one all the apps. make apps
Use clean
target to remove the local artificats generated by the tool.
# Cleans the workspace. make clean
We provide multiple push target for the Makefile. Typically, you need to first login by docker login
command to push the image on a repository.
onos-push
will push the tost-onos
image.
make onos-push
tost-push
will push the tost
image on the defined DOCKER_REGISTRY and DOCKER_REPOSITORY.
make DOCKER_REPOSITORY=onosproject/ tost-push
There are two special targets used by the CI/CD jobs: docker-build
and docker-push
. The first target automates the build process of the tost
image (check-scripts
, onos-build
, apps-build
and tost-build
). While the second one, it is just a tost-push
called in a different way (temporary). Feel free to use them if you are ok with the prerequisites steps.