govpp is a go binding for the vpp api
This repo provides the go binding for a version of vpp.
import "github.com/networkservicemesh/govpp/binapi"
This repo also provides minimal docker container for running vpp:
Whenever a combination of VPP_VERSION and cherrypicks/patches is used to build govpp/vpp docker container, they will be tagged in the docker repo. The corresponding tag will be laid on the main branch containing the corresponding binapi.
So simply run in the same directory as your go.mod file:
go get github.com/networkservicemesh/govpp/binapi@${tag}
Where ${tag}
is the tag of the govpp/vpp container you are consuming.
For example:
go get github.com/networkservicemesh/govpp/binapi@v21.06.0-9-16f166164
To set your go dependency for govpp to match the docker container you are using.
If you want a version of VPP, you can fork this repo and add it yourself. Because things are very heavily patterned and generated, its really quite easy:
- Change default value for ARG VPP_VERSION in Dockerfile to the vpp tag or commit id you want to build.
go generate ./...
- Push a PR to your fork and merge it. This will push the govpp/vpp image to your repo.
See [patch/patch.sh]. Simply add your cherrypicks to that file.
If you want to add patches to vpp simply add them with the .patch
suffix to the patch/ directory.
Change the version of govpp in the go.mod file
See How the Magic Works.
- Find a commit SHA of the VPP version you want to use
- Replace the old commit SHA with the new commit SHA
- Build a new
govpp
image withdocker build . -t ${YOUR_GOVPP_IMAGE_TAG} --target vpp
- Run
go generate ./...
to generate newbinapi
files - Open a
cmd-repo
you want to update - In
Dockerfile
: replacegovpp
image everywhere with the image you've built on the step 3 (for example, incmd-forwarder-vpp
here and here) - In
go.mod
: replacegit.luolix.top/networkservicemesh/govpp
withgovpp
version which uses newly generatedbinapi
files (from the step 4) - Build a new
cmd-repo
image