From b918b699ad033321d5c94e3a34123ee38b53fc37 Mon Sep 17 00:00:00 2001 From: Jorge Hernandez Date: Wed, 20 Sep 2017 23:12:27 -0500 Subject: pdp-d feature to simulate aai/mso/vfc in lab implemented as an optional loadable feature, this capability enables to bring up simulators used by junits in a pdp-d lab configuration. After lab installation, perform: 1. features enable controlloop-util 2. policy start Now the simulators are opened at ports 6666, 6667, and 6668. netstat output: tcp6 0 0 127.0.0.1:6666 :::* LISTEN 21562/java tcp6 0 0 127.0.0.1:6667 :::* LISTEN 21562/java tcp6 0 0 127.0.0.1:6668 :::* LISTEN 21562/java 21562 is the pdp-d PID in the lab. curl http://localhost:6666/aai/v11/network/generic-vnfs/generic-vnf/vnfIdA { "vnf-id": "5e49ca06-2972-4532-9ed4-6d071588d792", ... } Change-Id: I3f05333ce5549b2274eb967b2b8866189b7f8843 Issue-ID: POLICY-259 Signed-off-by: Jorge Hernandez --- .../src/assembly/assemble_zip.xml | 75 ++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 controlloop/common/feature-controlloop-utils/src/assembly/assemble_zip.xml (limited to 'controlloop/common/feature-controlloop-utils/src/assembly') diff --git a/controlloop/common/feature-controlloop-utils/src/assembly/assemble_zip.xml b/controlloop/common/feature-controlloop-utils/src/assembly/assemble_zip.xml new file mode 100644 index 000000000..26e6676b7 --- /dev/null +++ b/controlloop/common/feature-controlloop-utils/src/assembly/assemble_zip.xml @@ -0,0 +1,75 @@ + + + + + + feature-controlloop-utils-package + + zip + + + false + + + + target + lib/feature + + feature-controlloop-utils-${project.version}.jar + + + + target/assembly/lib + lib/dependencies + + *.jar + + + + src/main/feature/config + config + 0644 + + + + src/main/feature/bin + bin + 0744 + + + + src/main/feature/db + db + 0744 + + + + src/main/feature/install + install + 0744 + + + + + -- cgit 1.2.3-korg