commit | a9deb69a1ced864b61270bc3228ab32bc90464f2 | [log] [tgz] |
---|---|---|
author | Joey Armstrong <joey@opennetworking.org> | Fri Jun 30 18:13:01 2023 -0400 |
committer | Joey Armstrong <joey@opennetworking.org> | Sun Feb 04 18:57:16 2024 -0500 |
tree | 1a89d17f0636a8974d4372ab4cd0eec3d4880694 | |
parent | ae72bf8bde4f38744c810294084b9204c7cb6235 [diff] |
[VOL-5031] - Pre-release voltha-onos build [VOL-5099] - verify_foltha-onos-sanity-test FAIL app-install.sh tests/version-check.sh ---------------------- o shellcheck cleanups o Improve error detection and reporting. o cd '..' early VS resolving relative paths everywhere. o Replace $(basename) with shell string builtins. o use local vars to shorten paths and avoid extra string concatenation. o Added error detection in "<app name=" gathering, shell commands can fail allowing manipulation in APP_INSTALL_ROOT VS A_I_R/$name. Makefile makefiles/virtualenv.mk ----------------------- o Update requirements.txt read check to not require existence of an empty *.txt file on disk. dependencies.xml ---------------- o Update component dependencies to match the latest deployed versions. o https://wiki.opennetworking.org/display/VOLTHA/v2.12+Deployments o Still pending: segmentrouting.version and kafka. Change-Id: I05d2d71521fa56ea788cc959e1ce88b1d38e1b2b
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