Tagged by CORD Jenkins version-tag job: 7008, for Gerrit patchset: 26947
[VOL-4308] Deprecating repo due to stale state

Change-Id: I73db06ffbf8d0b9650f6b202bf287fdcf2e4b76b
2 files changed
tree: 581b26b0411507ef39ac70ff3e09fe3933700148
  1. .gitignore
  2. .gitreview
  3. Dockerfile
  4. Makefile
  5. README.md
  6. VERSION
  7. ofagent/
  8. pki/
  9. requirements.txt
  10. tox.ini
README.md

DEPRECATED

No Maintenance Intended

VOLTHA 2.4 was the last release that officially supported the ofagent written in python as the openflow agent for VOLTHA. From 2.4 onwards the ofagent is the ofaget-go. This codebase is going to be removed after the VOLTHA 2.8 release LTS support ends in December 2022.

ofagent-py

ofagent-py provides an OpenFlow management interface for Voltha. This is an earlier implementation in Python / twisted. This has been rewrite in Golang for performance/scalability reasons.

Building

git clone https://gerrit.opencord.org/ofagent-py.git cd ~/source/ofagent-py/ make docker-build

Building with a Local Copy of voltha-protos or pyvoltha

If you want to build/test using a local copy or voltha-protos or pyvoltha this can be accomplished by using the environment variables LOCAL_PROTOS and LOCAL_PYVOLTHA. These environment variables should be set to the filesystem path where the local source is located, e.g.

LOCAL_PROTOS=$HOME/src/voltha-protos
LOCAL_PYVOLTHA=$HOME/src/pyvoltha