mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-03-30 18:51:10 +02:00
Before, the behavior interface and other concrete classes used it by were part of the inbandtelemetry app. To make this behavior available to third-party apps (such as the fabric-tna pipeconf), we move it to the core APIs. In this process, we do some clean-up of the behavior API. For example, we remove references to network-level semantics (as behaviors should only abstract device-level ones). That helps in reducing the number of classes required to maintain in the core. Change-Id: I3ba24ea93cdfea115cee454d5e921e15ec17eee9
27 lines
678 B
Python
27 lines
678 B
Python
COMPILE_DEPS = CORE_DEPS + [
|
|
"@minimal_json//jar",
|
|
"//protocols/p4runtime/model:onos-protocols-p4runtime-model",
|
|
"//protocols/p4runtime/api:onos-protocols-p4runtime-api",
|
|
]
|
|
|
|
BUNDLES = [
|
|
"//pipelines/basic:onos-pipelines-basic",
|
|
]
|
|
|
|
osgi_jar(
|
|
deps = COMPILE_DEPS,
|
|
)
|
|
|
|
onos_app(
|
|
app_name = "org.onosproject.pipelines.basic",
|
|
category = "Pipeline",
|
|
description = "Provides pipelines with basic L2/L3 forwarding capabilities and packet-in/out " +
|
|
"support.",
|
|
included_bundles = BUNDLES,
|
|
required_apps = [
|
|
"org.onosproject.drivers.p4runtime",
|
|
],
|
|
title = "Basic Pipelines",
|
|
url = "http://onosproject.org",
|
|
)
|