diff options
author | Srihari Raghavan <srihari@cisco.com> | 2016-10-27 15:23:36 +0530 |
---|---|---|
committer | Srihari Raghavan <srihari@cisco.com> | 2016-11-03 18:26:00 +0530 |
commit | e83f0e1d6451c96ef9850b4a8b058c4b5c307617 (patch) | |
tree | a13b6175ba62b510ea7a3b4de6ea7447dbe8931d /vpp-integration | |
parent | 096e3e9a8b66970ed0b4a0e7f45dbd349902b20d (diff) |
HONEYCOMB-257 - Honeycomb support for in-band OAM (iOAM) path tracing
- Add iOAM module to handle configuration for the iOAM trace VPP plugin
- Add iOAM module test to verify add/delete configurations
- Reader/Initializers for future, dependent on https://gerrit.fd.io/r/3387
Change-Id: I557604a955771c139165aed7cd9e5716abbac3d1
Signed-off-by: Srihari Raghavan <srihari@cisco.com>
Diffstat (limited to 'vpp-integration')
-rw-r--r-- | vpp-integration/minimal-distribution/pom.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/vpp-integration/minimal-distribution/pom.xml b/vpp-integration/minimal-distribution/pom.xml index 0f504ec70..83fee5689 100644 --- a/vpp-integration/minimal-distribution/pom.xml +++ b/vpp-integration/minimal-distribution/pom.xml @@ -35,14 +35,17 @@ <vpp.common.integration.version>1.16.12-SNAPSHOT</vpp.common.integration.version> <vppnsh.version>1.16.12-SNAPSHOT</vppnsh.version> <nat.version>1.16.12-SNAPSHOT</nat.version> + <ioam.version>1.16.12-SNAPSHOT</ioam.version> <distribution.modules> io.fd.honeycomb.vpp.common.integration.VppCommonModule, io.fd.honeycomb.lisp.LispModule, io.fd.honeycomb.translate.v3po.V3poModule, io.fd.honeycomb.nat.NatModule, - // io.fd.honeycomb.vppnsh.impl.VppNshModule + // io.fd.honeycomb.vppnsh.impl.VppNshModule, <!-- Nsh module by default disabled, because it needs vpp-nsh plugin, which is not part of vpp codebase.--> + //io.fd.honeycomb.vppioam.impl.VppIoamModule + <!-- iOAM module by default disabled, because it needs ioam plugin (not part of vpp codebase.)--> </distribution.modules> </properties> @@ -95,5 +98,10 @@ <artifactId>nat2vpp</artifactId> <version>${nat.version}</version> </dependency> + <dependency> + <groupId>io.fd.honeycomb.vppioam</groupId> + <artifactId>vppioam-impl</artifactId> + <version>${ioam.version}</version> + </dependency> </dependencies> </project> |