commit | 251d2724c090ec49f014b11acb2b41e094b00363 | [log] [tgz] |
---|---|---|
author | Andrea Campanella <andrea@opennetworking.org> | Mon Sep 20 14:58:06 2021 +0200 |
committer | Andrea Campanella <andrea@opennetworking.org> | Mon Sep 20 17:58:22 2021 +0200 |
tree | 11b4e2758a586de5932f90c3587e724908817d04 | |
parent | fe9405e9940fa9d2331ec564abe4b938784f1e71 [diff] |
[VOL-4345] Moving to ONOS 2.5.3 as base image to include some fixes. Used for voltha 2.8 as well. Change-Id: I4a4f7808b7c7da5e002a3f5d99095e1734f2e2ee
Docker build environment capable of producing a version of onos and needed apps that can run with voltha. Typically the onos restful api would be used to include apps after onos is started. This provides a build environment that includes current released and enabled oar files or optionally can import locally built oar files.
By default the current set of onos apps is imported from a maven repository as read from dependencies.xml
.
make build
If you wish to include your own onos apps then export the LOCAL_ONOSAPPS
environment variable to have locally built oar files copied from local_imports/oar
into the docker build environment rather than pulling from maven. Any oar files in this directory will be included and set to start on onos startup.
Note! its assumed that the standard apps (olt-app, sadis, aaa, and dhcpl2relay) build environment is one up directory from this build environment. Modify get-local-oars.sh
if this is not the case:
export LOCAL_ONOSAPPS=true make build
The voltha-onos build also includes a mechanism to build in a default onos network-config.json
file. You can simply edit network-cfg.json
before building the docker image. Or if using docker-compose or k8s volume mount over the built in file within the container /root/onos/config/network-cfg.json
with your own.
For example, in a docker-compose file:
onos: image: "${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-onos:${DOCKER_TAG}" ports: - "8101:8101" # ssh - "6653:6653" # OF - "8181:8181" # UI environment: ONOS_APPS: 'drivers,openflow-base' volumes: - "/var/run/docker.sock:/tmp/docker.sock" - "./network-cfg.json:/root/onos/config/network-cfg.json" networks: - default restart: unless-stopped