docs.git
6 years agoUpdated git submodules
Michael Vorburger [Tue, 11 Jul 2017 15:54:37 +0000 (21:24 +0530)]
Updated git submodules

Project: infrautils stable/carbon 39550b6b5f3bec7e46db3382d2ec6e1021b5496c

ListenableFutures util to simplify adding error logging callbacks

Intended for usage in existing code prevalent in e.g. genius and netvirt
which simply ignores Future returned by DataBroker Tx submit; using
this, at least we'll get to see logs.  (Ideal solution would be real
error recovery callbacks.)

NB: This is solution for today's world.  In tomorrow's world where e.g.
DataBroker (and other ODL APIs) switch from Guava's ListenableFuture to
Java 8's CompletionStage, this helper won't be required anymore, as code
then will be able to just use the easier:

    completionStage.exceptionally(t -> LOG.error("...", t));

instead of using this utility for today's APIs like this:

    import static
org.opendaylight.infrautils.utils.concurrent.MoreFutures.addErrorLogging;

    addErrorLogging(listenableFuture, LOG, "...");

Until that (major...) API switch happens though, this is a very
convenient utility to short-cut what otherwise is several lines of
boiler plate code.

TODO: It would be cool if this could, later, preserve the call stack...

Change-Id: I1d3e4afbc0940faa0c8f83e9d713c2e081e18a28
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Sat, 18 Nov 2017 20:29:11 +0000 (15:29 -0500)]
Updated git submodules

Project: integration/test master dc784f488a64deb07b7342fd6b0428cdde9a3179

Use iproute instead of nameserver to get gw

The nameserver line is only included when a vm fails
to ping the gw and you see the below messages in the
console log:

=== pinging gateway failed, debugging connection ===

The iproute line is always included:

ip-route:169.254.169.254 via 10.20.20.2 dev eth0

The old code worked because at least one of the vms
in the list would hit the gateway failed block and
get the gw from the nameserver line. The old code
also would only copy the gw address once for all
the vms because it kept a list with size 1 for
the address. The new Get VM IPs tries to get the
gw for each vm and not just one for the whole list
of vms. Timing differences might end up not getting
the nameserver line, so instead use the metadata
line which is always present.

Change-Id: I72637575b5171d3eaad6110ed2e8bc2cefed25ed
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sridhar Gaddam [Wed, 11 Oct 2017 07:23:16 +0000 (12:53 +0530)]
Updated git submodules

Project: netvirt stable/carbon 40e95fd130e7cd8dc740c89067ce862c76f909c9

Shell Commands to Display Ipv6Service Cache

IPv6Service in netvirt maintains a cache of various Neutron resources to
honor the Router Solicitation/Neighbor Solicitation requests (which are
time sensitive) coming from the VMs spawned on the IPv6 Network.

This patch implements the necessary shell commands to dump the ipv6Cache.

Change-Id: Ie1aed6d47da540e3fd94c6a8cc3eedf7b4954989
Signed-off-by: Sridhar Gaddam <sgaddam@redhat.com>
6 years agoUpdated git submodules
Daniel Farrell [Fri, 17 Nov 2017 18:32:32 +0000 (13:32 -0500)]
Updated git submodules

Project: releng/builder master 549eec835a8c2adfc4645a17efb4e000a4985688

Pass stream to snap jobs vs extracting

Now that Thanh has shown me how to inject vars into builder scripts like
this, just pass stream vs hack to extract it from job name.

Change-Id: I689258c9379a15d50c5f4f7b10629cc5bbb42f2a
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 16 Nov 2017 10:59:32 +0000 (11:59 +0100)]
Updated git submodules

Project: netvirt stable/carbon 6faaf63551bab4383f84456418beb74bd9f32fff

Fix bad transaction leak in NeutronvpnManager

2256x transactions opened here, which are not closed.

see https://jira.opendaylight.org/browse/NETVIRT-886

Change-Id: I4b0d73203c46087d35cbfccc8aaf5d29d39d89b0
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 16 Nov 2017 17:05:16 +0000 (18:05 +0100)]
Updated git submodules

Project: netvirt stable/carbon 4b57bdc250dcaef13aff375e0fc3619765997a36

Fix bad transaction leak in InterfaceStateChangeListener

see https://jira.opendaylight.org/browse/NETVIRT-985

  555x transactions opened here, which are not closed:
    org.opendaylight.netvirt.vpnmanager.InterfaceStateChangeListener.lambda$remove$1

  31x transactions opened here, which are not closed:
    org.opendaylight.netvirt.vpnmanager.InterfaceStateChangeListener.lambda$add$0

  15x transactions opened here, which are not closed:
    org.opendaylight.netvirt.vpnmanager.InterfaceStateChangeListener.lambda$update$2

Change-Id: Id29be0fb48b3d97f84049d0e0d698d13757eb6a8
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
Signed-off-by: Stephen Kitt <skitt@redhat.com>
(cherry picked from commit a9b5d6ad16593465bc37a67b8f06e9d0f0c32b3d)
(cherry picked from commit 1a28405c7e179318d1918c87f9e8412667af78a4)

6 years agoUpdated git submodules
Stephen Kitt [Thu, 21 Sep 2017 16:22:31 +0000 (18:22 +0200)]
Updated git submodules

Project: genius stable/carbon 8409df3574c3a0496cb9b5e17859cd28ec162ac4

Add ReadWriteTransaction support

Backport from master (WITHOUT ItmTunnelAggregationHelper),
FOR https://jira.opendaylight.org/browse/NETVIRT-985.

Change-Id: Ia8c946dfc46f3218c15c7ce87215a434ba10ad85
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Wed, 15 Nov 2017 19:51:42 +0000 (11:51 -0800)]
Updated git submodules

Project: integration/test master d278dff10a574607d77a7570b89df07e6411bf31

Add router and sg listings to Show Debugs keyword

- also refactored List Router to List Routers because it makes
  more sense to be plural

Change-Id: I83df8a7d7fdfd238dacda138f069bb0b74e2e176
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 15 Nov 2017 23:34:31 +0000 (18:34 -0500)]
Updated git submodules

Project: integration/test master bfd68bfbb7801e923c05273146c2331610091cbb

Move arp learning to use Get VM IPs

Change-Id: I48ac351469f66875335763119081c503a12d2841
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Wed, 20 Sep 2017 18:05:09 +0000 (20:05 +0200)]
Updated git submodules

Project: genius stable/carbon 59caf785376497197e8cccd214b2243f27dde5f9

ManagedTransactionRunner utility to help close transactions

BACKPORT from master WITHOUT ItmTunnelAggregationHelper,
and ManagedNewTransactionRunnerImplTest w.o. LogCaptureRule,
and adjusting for DataBrokerTestModule changed in master;
FOR https://jira.opendaylight.org/browse/NETVIRT-985.
REQUIRES https://git.opendaylight.org/gerrit/#/c/65602/

_______________________________________________________________________
Commit Message from original change on master:

inspired by
https://git.opendaylight.org/gerrit/#/q/topic:transaction-helper, but:

  (1) instead of the cancel-if-lambda-didn't-submit design, forbid
lambda from doing submit() or cancel(), and instead let new transaction
utility do that.  This is better because it already opens the door for
non-single transactions in the future (see upcoming next chained change)

  (2) allow lambda to throw checked exceptions (see CheckedConsumer),
which will, obviously, lead to the Transaction to be canceled. This is
important as it helps avoid errors where using code forget this.

TODO: Make all places which topic:transaction-helper converted to using
TransactionHelper use this change's ManagedNewTransactionRunner instead.

Change-Id: I613ab7720e226c09d46c90329f0bc767f4642530
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Tomas Jamrisko [Mon, 13 Nov 2017 13:04:33 +0000 (14:04 +0100)]
Updated git submodules

Project: integration/test master 868f7131a40a557517903fc3775ca77655b21a07

Create and delete security groups

The connectivity test suites are creating and deleting most resources
as they require, except for allowing SSH, which gets created during
l2 tests and is reused by l3, which creates a dependency. It would be
great, if l3 test suite worked independently

Change-Id: Icdf47ceaaf3b1fb0353cca454eb039795137e7c1
Signed-off-by: Tomas Jamrisko <tjamrisk@redhat.com>
6 years agoUpdated git submodules
jenkins-releng [Fri, 17 Nov 2017 01:41:29 +0000 (01:41 +0000)]
Updated git submodules

Project: releng/builder master ec7d552375394af9c77869ee330bf9d235019896

Update validate autorelease projects for oxygen

Change-Id: I364baf48dd67e7d15341bccdc734d7cf9e396141
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Fri, 17 Nov 2017 00:50:21 +0000 (00:50 +0000)]
Updated git submodules

Project: releng/builder master f1f135a94f604a243c7daa6418cea8b90b63603c

Merge "Add globstar to log surefire reports for odlparent"

Add globstar to log surefire reports for odlparent

Change-Id: I5a032fd993996f5120e0d0eb887ac8d563124b90
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Fri, 17 Nov 2017 00:50:17 +0000 (00:50 +0000)]
Updated git submodules

Project: releng/builder master 1fc500b2ae0403431242b4d735698461cabe67a3

Merge "Add globstar to log surefire reports for yangtools"

Add globstar to log surefire reports for yangtools

Change-Id: I3462f88b541f71635a1f9a241366d868b716ebf5
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
ebrjohn [Thu, 12 Oct 2017 21:05:59 +0000 (16:05 -0500)]
Updated git submodules

Project: integration/test master 8038cf9dc0c10b11bca7a2c14983b6cc8f21a087

Fix SFC OVS NSH installation regression

- It was still tring to install OVS 2.5.90 from Yi Yang's
  branch, but that no longer works and OVS 2.6.1 should now
  be installed.

Change-Id: Ide9697e821c9136e053ef6a4b3bc3a866a135840
Signed-off-by: Brady Johnson <bjohnson@inocybe.com>
6 years agoUpdated git submodules
Aswin Suryanarayanan [Thu, 16 Nov 2017 15:58:20 +0000 (21:28 +0530)]
Updated git submodules

Project: netvirt stable/carbon 81b32336dbf5952c0ac60b05a622d1de5d42fdb1

NETVIRT-981 CSIT Sporadic failures - snat conntrack job failing many
tempest scenario tests Changes are made to avoid stale entries when an
external network is deleted.
https://jira.opendaylight.org/browse/NETVIRT-981

Change-Id: I28b86a4233d397686c9e074ece5697eb0629ff3e
Signed-off-by: Aswin Suryanarayanan <asuryana@redhat.com>
6 years agoUpdated git submodules
Philippe Guibert [Tue, 14 Nov 2017 14:18:33 +0000 (14:18 +0000)]
Updated git submodules

Project: integration/test master 8292f1a8e751ba5ff273a985f159f234891abf02

INTTEST-33: ipv6 neighboring displayed from VM

The fix is fixing the syntax of the ip command to use when being a
busybox instance.

Change-Id: I1eb3cf4e0e162437671f1f0fa7e7cdf117d9ebd2
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 15 Nov 2017 23:41:57 +0000 (18:41 -0500)]
Updated git submodules

Project: integration/test master 6da09fecbb6f03a0c19859ca47ca233cf460ee23

Move sfc to use Get VM IPs

Change-Id: I0bcbfbea01c94f7cd9ca23a9b0e56e500fecd8e5
Signed-off-by: Sam Hague <shague@redhat.com>
Move l2gw to use Get VM IPs

Change-Id: Ic182f770e5a499b5dcaedacdd03448464e9fc0da
Signed-off-by: Sam Hague <shague@redhat.com>
Move l3 clustering to use Get VM IPs

Change-Id: I870b455a916ac951580cb89b4ba37e0379b5e00f
Signed-off-by: Sam Hague <shague@redhat.com>
Move l2 clustering to use Get VM IPs

Change-Id: If40be3121e7fd6b4a55237f702a95d989ec45c98
Signed-off-by: Sam Hague <shague@redhat.com>
Move bgp vpn to use Get VM IPs

Change-Id: I2db9208037690f274923b9a2c5839f3b4e671e3a
Signed-off-by: Sam Hague <shague@redhat.com>
Move basic vpn suite to use Get VM IPs

Change-Id: Ic2bf29fa8c54c7362dbdb26fa12730fb69a9aec9
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 16 Nov 2017 20:15:21 +0000 (12:15 -0800)]
Updated git submodules

Project: integration/test master df3c5d2933bf8fc1efdab37f3e3eb4091ab3d1be

Change Get VM IPs [Documentation] for accuracy

Change-Id: I26a677fe93b806ced9bc13611a658f5a6d479402
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Tue, 14 Nov 2017 22:26:03 +0000 (17:26 -0500)]
Updated git submodules

Project: integration/test master dd6a44f6ba72dee9ac721ef484feb375619d86dc

Move elan suite to use Get VM IPs

Change-Id: Idc1d35e7fba07ee44daf3114bc3b98b22dcde64a
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 16 Nov 2017 00:02:06 +0000 (16:02 -0800)]
Updated git submodules

Project: integration/test master 3fdf78082fc06cfbba8a3a46af20372ad2aee6bc

Use Run Keywords for multiple keywords in teardown

this was broken recently, when wanting to split out
the amount of data models we collect in our non-sfc
suite.

Change-Id: I5d4bf4751a27b00c01a7bd375c49013d66a6aebd
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 16 Nov 2017 16:21:23 +0000 (08:21 -0800)]
Updated git submodules

Project: integration/test master 61974191879f86d264fce78f00cd3293ddd3765d

Add parens around "${status}" - fix invalid syntax

Change-Id: I7a34148a7a2ba8f6b308fa3226dceca3b80b7d92
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Wed, 15 Nov 2017 05:24:46 +0000 (21:24 -0800)]
Updated git submodules

Project: integration/test master 77f953b1521fe9547348943f7e1aae5191704bee

Handle case when Get VM IP is status FAIL

When a keyword is supposed to return some values (a list in
this case) but hits a failure before the [Return] statement,
we actually only get a status of FAIL and some error message.
Need to handle that.

Change-Id: Ic8e7f9bccfc81bb18f34ede28f4b50277d1c802e
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Wed, 15 Nov 2017 22:57:12 +0000 (14:57 -0800)]
Updated git submodules

Project: releng/builder master 8b5d2536b5f1298f67beb3eb1c981e5722940036

Update template comment block for easy reference

- some templates have been added over time without
  this reference section being updated

Change-Id: I3864556c7be51addb733b6f290763cf4a38e4b95
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Wed, 15 Nov 2017 17:32:02 +0000 (18:32 +0100)]
Updated git submodules

Project: netvirt stable/carbon e34d572513dfe4e3e1eb7dcbe2ae1f1c6fcda3b6

Fix bad transaction leak in StatisticsImpl

see https://jira.opendaylight.org/browse/NETVIRT-886

Change-Id: Ia72726f9eeae0bcb6273da5b50eb60a65dcd7358
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Wed, 15 Nov 2017 16:59:01 +0000 (17:59 +0100)]
Updated git submodules

Project: ovsdb stable/carbon d1723dd4ab8121da328137525a57fdd6c439406c

Fix transaction leak in BridgeConfigReconciliationTask

see https://jira.opendaylight.org/browse/OVSDB-425

Change-Id: I9d89cb72768cff137b91773ac8ab0e1d5fce7a04
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Wed, 15 Nov 2017 18:26:56 +0000 (19:26 +0100)]
Updated git submodules

Project: ovsdb stable/carbon b4d2a15c4a4014446429d52d0ed3d635a15f8e96

Fix transaction leak in OvsdbConnectionManager

see https://jira.opendaylight.org/browse/NETVIRT-985

Change-Id: I50d5e5856d813be8b40bd552c734630856257294
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Wed, 15 Nov 2017 18:19:16 +0000 (19:19 +0100)]
Updated git submodules

Project: ovsdb stable/carbon 8bad9e3debeedab2313d75ba0ff3be08a621c1ab

Fix possible transaction leak in BridgeOperationalState

see https://jira.opendaylight.org/browse/NETVIRT-985

Change-Id: Ie8bd1d81cb4df55d9c75ca275756013262c12a00
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Wed, 15 Nov 2017 01:16:17 +0000 (01:16 +0000)]
Updated git submodules

Project: releng/builder master 74cec2b6faea1ef272d8befcebe0a2adae007adb

Merge "Add more Xmx to bgpcep project build"

Add more Xmx to bgpcep project build

Change-Id: I95080c5583deeb2364f845d4f63122b180088990
Signed-off-by: Luis Gomez <ecelgp@gmail.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 9 Nov 2017 20:29:07 +0000 (12:29 -0800)]
Updated git submodules

Project: integration/test master 627f8d2fc6b7126dfb2038588c08968bf9b0d099

Remove Lithium keyword from packetcable csit

There is no more lithium to worry about, so no need to keep that
keyword

Change-Id: Ib6f811f13a94efd52a818bc1ec0a6c62edc560e2
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Anil Belur [Wed, 15 Nov 2017 00:37:19 +0000 (00:37 +0000)]
Updated git submodules

Project: releng/builder master 3c58e6f3d790405107a895a5bca46b191b4385be

Merge "Update to global-jjb v0.12.1"

Update to global-jjb v0.12.1

Pull in fix to enable maven jobs archive custom logs
https://gerrit.linuxfoundation.org/infra/#/c/7492/

Change-Id: Iddc7d9856ea1d21bfd3629e7240991b8e90cc5dc
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
Rob Adams [Tue, 14 Nov 2017 23:14:13 +0000 (15:14 -0800)]
Updated git submodules

Project: releng/builder master a19746018f6779ea6f3393bc4c1ed89c88e552c8

Reduce parallelism to fit low-spec build machines.

Change-Id: I41df93b61c6eec4ffc80f8c9423986ca03d4973a
Signed-off-by: Rob Adams <readams@readams.net>
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Mon, 13 Nov 2017 19:08:19 +0000 (11:08 -0800)]
Updated git submodules

Project: integration/test master 0bf54d5f69a56e9d3aa05326ac013d6a9855397c

Rework variables to keep scope limited to keyword

- remove the need to share variables across keywords
- return console log so it can be printed just once after
  the collect ip WUKS is done polling

Change-Id: I10847f064ca38d6504e2715b51ad02792e0d3811
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Tomas Cechvala [Tue, 14 Nov 2017 11:11:51 +0000 (12:11 +0100)]
Updated git submodules

Project: releng/builder master da4bde57e90767fab748188eb46126e0a0a68092

Shift Openstack version in GBP test

stable/newton to stable/ocata

Change-Id: Iba76f17cb9c73db84e9594a36cd65029c7fe110a
Signed-off-by: Tomas Cechvala <tcechval@cisco.com>
6 years agoUpdated git submodules
Atul Gosain [Tue, 7 Nov 2017 01:57:51 +0000 (17:57 -0800)]
Updated git submodules

Project: netconf stable/carbon 59f61a60e80a3312f6de1bdd08153009cf2dcf6f

Extra superfluous edit-config RPC sent - Netconf-482

Extra superfluous edit-config RPC sent just prior to correct edit-config RPC for top-level lists
POST & PUT to certain top-level lists in a mounted device's model returns a 500 error via Restconf,
although in some cases (device-dependent) the config appears to have committed.
This problem first appeared in Boron-SR3, and continues in Carbon SR-1.

Change-Id: I473e6e1f34d6f2bb9aa63f12b90fc479e4a8e3cd
Signed-off-by: Atul Gosain <agosain@luminanetworks.com>
6 years agoUpdated git submodules
Dipankar Jain [Thu, 2 Nov 2017 18:26:51 +0000 (23:56 +0530)]
Updated git submodules

Project: integration/packaging master 6ed2f3f6c1aa6cf198096acc7f9750ace5725f3e

Move versioniong wiki to readthedocs, update

Imports most content from:

wiki.opendaylight.org/view/Integration/Packaging/Versioning

Also:
  * Updates examples to use newer releases
  * Adds links to ODL Nexus-hosted packages
  * Shows puppet-odl versions via metadata, tags no-longer used
  * Updates links
  * Fixes typos

Resolves: INTPACK-24
Change-Id: I8968654078426e5e97298b4380a53e8b3b01077d
Signed-off-by: Dipankar Jain <bunny_jain@ymail.com>
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Mon, 13 Nov 2017 21:41:52 +0000 (16:41 -0500)]
Updated git submodules

Project: integration/test master 894864078528709ca28f653cdfc20a24c5d7c955

Fix tox problem

Change-Id: Ie473e848c60af10cac8e838e3d3e532ad376e4f3
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Sun, 12 Nov 2017 01:02:51 +0000 (20:02 -0500)]
Updated git submodules

Project: integration/test master d8c13d7866321b7b2080cb15d8c6cfb02590887e

Reduce logging in collect ips

Created a new VM Collect IP keyword that reduces the
amount of logging and works faster.

Problems in old keyword:
- logged the whole console multiple times, per vm check and per
operation
- ran Verify Active extra times
- different suites replicated using code

This patch:
- moves all the common wrapping code to a single keyword
- reduces the extra Active calls
- reduces the console to a single time per vm check
- removed console log on error since the log is always captured
during the attempt to get the addresses already

This looks to have reduced the time in half for retrieving the
addresses as well as reducing the multiple loggin of long
console logs.

Only converted the connectivity suite and left the old keyword
in place. The next patches will convert the other suites.

Change-Id: I042c137165eae95946fa5197fbb52b1b85312a00
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Tomas Cechvala [Mon, 13 Nov 2017 10:07:52 +0000 (11:07 +0100)]
Updated git submodules

Project: integration/test master 22b769490a9169af12ad22e1ed2f56602889e28f

Fix for multiple keywords found in Utils.robot

By specifying OperatingSystem library for 'Get file' call.

Change-Id: I0a4e8a362033b381cf88ac303b931880f419a3de
Signed-off-by: Tomas Cechvala <tcechval@cisco.com>
6 years agoUpdated git submodules
Anil Belur [Mon, 13 Nov 2017 11:17:30 +0000 (11:17 +0000)]
Updated git submodules

Project: releng/builder master b2e18814e1bdb0c40758f5b0ec9fcdca4114c1b7

Merge "Do not use --merge in rebot command"

Do not use --merge in rebot command

Change-Id: I00d23e7fcb6e913769d4787df94c93e431e821cb
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 9 Nov 2017 18:15:07 +0000 (10:15 -0800)]
Updated git submodules

Project: integration/test master 60483cf4da270fe0c9e21dfefa8c3f2356087361

Reduce the number of polling iterations in WUKS

This has the potential to reduce some logs that end up in
the output.xml. We do use --removewuks when we generate the
html reports, but that is post processing. All the iterations
are still being logged in output.xml. Hopefully this will
help reduce the final log size of output.xml

Change-Id: If84c43ac659750e53efe2b2c18c6e81bab801ad7
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Fri, 10 Nov 2017 02:24:59 +0000 (21:24 -0500)]
Updated git submodules

Project: integration/test master f8c8aac8aeadaae73af5a56d1c271d18ed5f7674

add cleanup for con sg suites

Change-Id: I7bfe76c89c6f4c90384fd9a5f8ab59a756d870c5
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Thu, 9 Nov 2017 01:08:43 +0000 (20:08 -0500)]
Updated git submodules

Project: integration/test master 1a621dc639a979b63f15b4d470a344b2b7e202c4

Cleanup on neutron sg suite

Change-Id: Ife25300241bb415fc881c14e3bfb8beb5d85f63b
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Tomas Markovic [Fri, 10 Nov 2017 10:18:48 +0000 (11:18 +0100)]
Updated git submodules

Project: releng/builder master 421f9d567a0247eb14d99bb3d37a4e389cd4d935

BGPCEP-688: update bgp test

install odl-bgpcep-bgp-config-example
for bgpclustering tests
for bgp ingest tests

Change-Id: I529fbd16590dac6e83c6845d7e5bc0e5b9e8a8ee
Signed-off-by: Tomas Markovic <tomas.markovic@pantheon.tech>
6 years agoUpdated git submodules
Sam Hague [Thu, 9 Nov 2017 00:41:23 +0000 (19:41 -0500)]
Updated git submodules

Project: integration/test master de54cdb58aa62c24c4c4e2f6c307de105d0834ba

Reduce logging in vpnservice

Change-Id: Iebd3f178d9931a46e2df0af63cb5698f69a708ad
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 9 Nov 2017 17:52:49 +0000 (09:52 -0800)]
Updated git submodules

Project: releng/builder master f471623419a76665a0e2bf85a4a753bd78d8e06d

Upgrade robot vms to use 4G RAM from 2G

some robot jobs are creating log files (output.xml) in excess
of 1.5G in size. When robot parses that file to generate it's
html reports it reads the entire file (I believe) in to memory
which ends up causing an OOM scenario in a 2G system. For now,
this will help, but as jobs increase in size and duration,
even 4G will not be enough.

Change-Id: I71c72a8ad62a05549fc4623531f4c7b9387505bc
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Aswin Suryanarayanan [Fri, 27 Oct 2017 08:45:40 +0000 (14:15 +0530)]
Updated git submodules

Project: netvirt stable/carbon ff767048cb49d1a4eabf1272760f6cba4bdca6f7

NETVIRT-968  : Conntrack SNAT fails in a cluster setup.

Made  the SNAT node event listener cluster aware using
AsyncClusteredDataTreeChangeListenerBase

https://jira.opendaylight.org/browse/NETVIRT-968

Change-Id: If036fe679abe8ac5c5457b488325d2474f85820c
Signed-off-by: Aswin Suryanarayanan <asuryana@redhat.com>
6 years agoUpdated git submodules
cgowdru [Tue, 31 Oct 2017 07:14:29 +0000 (12:44 +0530)]
Updated git submodules

Project: netvirt stable/carbon abd30a4684c166d049c4614657b2a5248be4f5d1

Bug9298 : ModifiedNodeDoesNotExistException for FIP

Description:
1) This Exception is thrown which deleting the VM instances(using
command “openstack server delete VM“) as part of “External network test”
2) This VMs are booted directly using net-id
Ex: openstack server create --image cirros-0.3.5-x86_64-disk --flavor
m1.nano --nic net-id=193f740e-910f-4038-9a4a-7d8758e63756
VmInstanceFloating1 --security-group sg-connectivity --min 1 --max 1
3) And such Vms are associated with floating ip  using command
“openstack server add floating ip VmInstanceFloating1 10.10.10.12”
4) When such an VM is deleted using “openstack server delete”, I need
NeutronPortChangeListener.remove()(for VM Neutron port deletion) and
NeutronFloatingToFixedIpMappingChangeListener.update(for
floatingip-disassoicated from neutron port) getting triggered
concurrently.
5) NeutronPortChangeListener.remove() -> handleNeutronPortDeleted()
-> nvpnManager.dissociatefixedIPFromFloatingIP() ->
floatingIpMapListener.dissociatefixedIPFromFloatingIP() ->
removeRouterPortsOrPortsNode() -> MDSALUtil.syncDelete()
6) NeutronFloatingToFixedIpMappingChangeListener.update() ->
clearFromFloatingIpInfo() -> MDSALUtil.syncDelete()
7) Both step-5 and step-6 attempt to delete same DS instance
resulting in one in this exception.

Solution:
Change done to check if the internal-to-external-port-map fo the given
fixed-ip exists during Step-6 flow there-by preventing deletion on
non-existant DS instance.

Change-Id: Icc4973020ff73225a5b25a5e73d1ffcbf78f2609
Signed-off-by: cgowdru <chetan.arakere@altencalsoftlabs.com>
6 years agoUpdated git submodules
cgowdru [Thu, 2 Nov 2017 07:21:43 +0000 (12:51 +0530)]
Updated git submodules

Project: netvirt stable/carbon 7a69cdde61c7317226ea832c4088bcec521d2cd6

Bug 9297 : Adjacency doesn't exist exception fo FIP

Description : When are ARP request for floating-ip(which is learnt
earlier) is received(with mac address change due to deletion and creation
of same FIP during tempest), query is done to delete the odl-adjacency
from vpn-interface which doesn't exists.

Instead of quering all adjacenies, change done for existance of specific
adjancency and delete it if only exists.

Change-Id: Id39f9f0830330bb84869c0d3a88c4787cd55df3c
Signed-off-by: cgowdru <chetan.arakere@altencalsoftlabs.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 9 Nov 2017 16:28:55 +0000 (16:28 +0000)]
Updated git submodules

Project: releng/builder master 0f16b29ecc52f1b1beb31f563659b15b07cea4eb

Merge "Add Gerrit Trigger for multipatch build"

Add Gerrit Trigger for multipatch build

Introduces a new trigger "multipatch-build:" which can be used to
trigger a build from a Gerrit comment rather than requiring committers
to have Jenkins access. Patch parameters are passed through a 1 liner
after the colon of the trigger.

Change-Id: I4c269d3db11a80d981209ef9b1b4ff428f1b7741
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoMerge "Remove javasphinx" into stable/carbon
Thanh Ha [Thu, 9 Nov 2017 15:40:22 +0000 (15:40 +0000)]
Merge "Remove javasphinx" into stable/carbon

6 years agoFix infrautils javadoc url 77/65377/1
Thanh Ha [Thu, 9 Nov 2017 15:29:36 +0000 (10:29 -0500)]
Fix infrautils javadoc url

Change-Id: I8f1d3349448032d96046aa8d87e72fef7d3e6c47
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoRemove javasphinx 76/65376/1
Thanh Ha [Thu, 9 Nov 2017 15:15:06 +0000 (10:15 -0500)]
Remove javasphinx

The community has spoken and decided that we will continue generating
javadoc using javadoc. We now have javadocs.opendaylight.org to handle
this.

Change-Id: I5ef2aac6e8a4e6f1bafcdde663fb9ceda4d44fd5
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdate javadoc to javadocs.opendaylight.org 71/65371/2
Thanh Ha [Thu, 9 Nov 2017 15:03:28 +0000 (10:03 -0500)]
Update javadoc to javadocs.opendaylight.org

With javadocs.opendaylight.org now available we can start linking to
javadoc there.

Change-Id: Icef5b6656dad96b5f883951051ae2417c455a85d
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Wed, 8 Nov 2017 23:35:08 +0000 (23:35 +0000)]
Updated git submodules

Project: releng/builder master 003835acd2d9e452ff4d6f829cbce441c5ebd82b

Merge "Run pybot per suite and collect individual logs"

Run pybot per suite and collect individual logs

Change-Id: I680bcd1fb613c0ea163d09c5c593484cede0fc70
Signed-off-by: gvrangan <venkatrangang@hcl.com>
6 years agoUpdated git submodules
Anil Belur [Wed, 8 Nov 2017 22:49:44 +0000 (22:49 +0000)]
Updated git submodules

Project: releng/builder master 10833fd3e59e313340cd9f20f7876cc466bd13dc

Merge "Switch to using global-jjb lf-jacoco-report macro"

Switch to using global-jjb lf-jacoco-report macro

Change-Id: Ifae2fcb2d506a2158a3c2211e8d04505d3821813
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Anil Belur [Wed, 8 Nov 2017 22:41:20 +0000 (22:41 +0000)]
Updated git submodules

Project: releng/builder master 3b974233d24dd59f58ea78d648b8ab1bb380f4d0

Merge "Remove unused macros gpg-sig and jjbini"

Remove unused macros gpg-sig and jjbini

Both these macros are no longer used by any jobs in this repo and have
been migrated to global-jjb so should be safe to remove.

Change-Id: Ica8f73d1be2ce65867a363b2fe09b0ba6c1c2d66
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Anil Belur [Wed, 8 Nov 2017 22:39:12 +0000 (22:39 +0000)]
Updated git submodules

Project: releng/builder master 5bb4581c51fde9a78d259d7460a48608ea5185b1

Merge "Remove deprecated server-name variable"

Remove deprecated server-name variable

Project should be using gerrit-server-name at this point.

Change-Id: Ie1c12a264b342ebe8010a380ff42cbbc6c0b3bf7
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Thanh Ha [Wed, 8 Nov 2017 21:04:05 +0000 (16:04 -0500)]
Updated git submodules

Project: releng/builder master 586eb17287ebeb9ed430a895360a92cf8a850eda

Add tox verify job for LF docs-conf project

Change-Id: I51409c91569eeea6a3d0f154b2c011ae5cf3e97e
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Sam Hague [Wed, 8 Nov 2017 18:51:14 +0000 (13:51 -0500)]
Updated git submodules

Project: integration/test master 5d4c5b7d354fa52177765895121e9f83135efbc8

Don't process the prompt line

The Write Commands Until Expected Prompt Keyword
executes a command and then reads output until it sees
the prompt. It then returns all that read output. This
output is then split into lines - which means you get
the prompt line also.

This patch instructs Split To Lines to ignore the last
line (-1).

Change-Id: Ifea842f5b0fa0c45818be4e9cbaa2f0b33774af6
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 8 Nov 2017 17:13:22 +0000 (12:13 -0500)]
Updated git submodules

Project: integration/test master ff6b463bf004d49d39e40d3c0d71296714969862

Don't dump the err/warn/exception

No need to collect this information as
it is also collected by the builder at the end of the test run.

Change-Id: I5c89cf7717f30ec72619bc2c05bc7e78b1e19bac
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 8 Nov 2017 17:06:34 +0000 (12:06 -0500)]
Updated git submodules

Project: integration/test master 74118d72dc6afa94da9b915069641a54bc18a2d9

Reduce logging in model dumps

Change-Id: I19fa3df630344d3ed2990986bb6f1e5fac3df53e
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 8 Nov 2017 16:25:25 +0000 (11:25 -0500)]
Updated git submodules

Project: integration/test master 6619c9053c3c179d9dde9dfc9db054f6489bf31f

Reduce logging in SG suite

Change-Id: I54d4f3382f2360cb7e7f96bb231f8c84a43a0b13
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 8 Nov 2017 15:59:22 +0000 (10:59 -0500)]
Updated git submodules

Project: integration/test master 0777b1f86867683190cdcb85dd07b2d419bb0128

Reduce logging in OpenStackOperations

Change-Id: I07097ebe328c8823b841448ed3f25fa80ffcfd3e
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 8 Nov 2017 15:28:45 +0000 (10:28 -0500)]
Updated git submodules

Project: releng/builder master 254b9875d0648032490556a32e60d2750f23e0e0

Add 3node snat-conntrack gate trigger

Change-Id: I1f01bec2486520481bcd4d500cf6dc8612b71714
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Thanh Ha [Wed, 8 Nov 2017 14:38:40 +0000 (14:38 +0000)]
Updated git submodules

Project: releng/builder master 9df83a87c56509566f30c8cbbfb75b1ec3bade29

Merge "BGPCEP-688: Install default config for bgp/bmp"

BGPCEP-688: Install default config for bgp/bmp

Due to removal of default configuration of bgp/bmp, now install
configurations within the tests.

Change-Id: Ia1aab20484fb2edb1576047d10447fc4ab25e1a0
Signed-off-by: Tomas Markovic <tomas.markovic@pantheon.tech>
6 years agoUpdated git submodules
Anil Belur [Tue, 7 Nov 2017 22:14:26 +0000 (08:14 +1000)]
Updated git submodules

Project: releng/builder master e05ebe5db2bfef9201d3c46a76af2b60d03c912d

Ensure apt is not locked on Ubuntu nodes

A background apt process locks /var/lib/dpkg/lock and causes apt
commands to fail. Therefore check if apt is locked before running
apt.

Errors:
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource
temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg), is
another process using

Change-Id: I3ced3711b26ebe9ecf5654c70d23f44e905c1f4c
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 17:30:18 +0000 (17:30 +0000)]
Updated git submodules

Project: releng/builder master 0861cc53ecb3b40c924d253f1cc90489fafe7d95

Merge "BGPCEP-694: Install bgp config example"

BGPCEP-694: Install bgp config example

for bgp ingest test

Change-Id: Ibf239e89b53bf817b86fbf41a50925d4f0d1eece
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
6 years agoUpdated git submodules
Thanh Ha [Mon, 6 Nov 2017 18:46:00 +0000 (13:46 -0500)]
Updated git submodules

Project: releng/builder master 2755dad507df0f1aaaed5e9da71076b6b8a590a2

Remove releng maven jobs (verify, clm, sonar)

Once the patches in the migrate-maven-topics topic are merged
https://git.opendaylight.org/gerrit/#/q/topic:migrate-maven-jobs

We can cleanup the java jobs file to remove the deprecated job types.

Change-Id: I285a9e2c4672a078b596cefd1b69ffc65855b07b
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Thanh Ha [Tue, 7 Nov 2017 15:11:24 +0000 (10:11 -0500)]
Updated git submodules

Project: releng/builder master ebb321f1aaa399dc574f0174541d6baed8af97cf

Update sonar jobs to global-jjb

Switch jobs over to using the global-jjb version of the Sonar job.

Change-Id: Ide94181287833dbad2ee665923da3eaf2a646dc9
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Thanh Ha [Tue, 7 Nov 2017 15:14:34 +0000 (10:14 -0500)]
Updated git submodules

Project: releng/builder master 59f53aa87248d92dad1fc06ffadff8b2f5567105

Remove clm job from NetVirt

Missed this change in Id4a583b9bc7297ae82d9769e1ac2fc417d26787d.

Change-Id: I6c46f5f94bc7fcbc1922cd33be667d2151496a59
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 01:01:12 +0000 (17:01 -0800)]
Updated git submodules

Project: integration/test master 0e373db0c02a204bb36f8212c2d507969c3367d9

Redirect ostestr stderr output to /dev/null

comments in the code, but for completeness here is the reason:
There are tons of deprecation error messages when we use
ostestr in our CSIT environment (openstack via devstack)
The robot log files are very large and one culprit is all
these deprecation warnings. If we redirect stderr to /dev/null
we should be able to ignore them. We will miss any other
errors, however.

Change-Id: Ic533493cf3f271e4004c0eaf9f0cb2d52e2be8c9
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 00:01:50 +0000 (16:01 -0800)]
Updated git submodules

Project: integration/test master 4eb6a912082a887e17b096dd4d3cd0503e805289

Remove extra Logging in VPNService suites

this is an ongoing effort to reduce our log sizes,
specifically the output.xml file which can grow
very large and takes a lot of resources to parse.

Change-Id: I2f1b603f977d2804f8c992fe40ffcfb521de91a2
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:28:55 +0000 (02:28 +0000)]
Updated git submodules

Project: releng/builder master 49f4eb3d8737771bb1e10eaab69eb145c858f5db

Merge "Migrate systemmetrics to global-jjb Maven jobs"

Migrate systemmetrics to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ia8461124ed2abf732047a631731ec1d043681686
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:28:36 +0000 (02:28 +0000)]
Updated git submodules

Project: releng/builder master 73840a05255771c071d364cd391f738423ab4dd7

Merge "Migrate ttp to global-jjb Maven jobs"

Migrate ttp to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I92f08fd6cea058305da85dbef04c796c85636910
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:28:23 +0000 (02:28 +0000)]
Updated git submodules

Project: releng/builder master ab847c89e2624b323b1193d2cc729e0f058dac4c

Merge "Migrate yang-push to global-jjb Maven jobs"

Migrate yang-push to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ibb7a9af5d38f4a89508fd9bd08920488349aba81
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:27:57 +0000 (02:27 +0000)]
Updated git submodules

Project: releng/builder master 27cee20f365aa2862417a15f29b1ff000d3e4b1f

Merge "Migrate sfc to global-jjb Maven jobs"

Migrate sfc to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I2c01f605f38358065f343de57104bdfdc0ced4fc
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:27:29 +0000 (02:27 +0000)]
Updated git submodules

Project: releng/builder master 006b393e87918e350aaf236843f21452bb3d8576

Merge "Migrate topoprocessing to global-jjb Maven jobs"

Migrate topoprocessing to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I1d1261ca5345ca22e3d45a0b420f9bad8b494200
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:27:14 +0000 (02:27 +0000)]
Updated git submodules

Project: releng/builder master 87f0290467fed3322e4ee3bf8fd9fa2674c8bcd7

Merge "Migrate unimgr to global-jjb Maven jobs"

Migrate unimgr to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I567516e8c720b668000160531cff0fd7ced258b4
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:26:45 +0000 (02:26 +0000)]
Updated git submodules

Project: releng/builder master 179eb6fdb7167a2c4a5d36226a72f1ed2adcd5bc

Merge "Migrate transportpce to global-jjb Maven jobs"

Migrate transportpce to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I9baca256a38326d08ec252c47271d5193e5d96c3
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:26:34 +0000 (02:26 +0000)]
Updated git submodules

Project: releng/builder master 60ece105911dfac245dd20f4b006b6b09a9d10f1

Merge "Migrate vtn to global-jjb Maven jobs"

Migrate vtn to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I52960a8418395f127e25a80c959a12faaa9ee259
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:26:23 +0000 (02:26 +0000)]
Updated git submodules

Project: releng/builder master 90e6051476d97ab8d1bc54d1832f6e931174270b

Merge "Migrate usc to global-jjb Maven jobs"

Migrate usc to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ieeb5cb3a7b9540487014cc8e7a373ec0a368a513
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:26:04 +0000 (02:26 +0000)]
Updated git submodules

Project: releng/builder master 0ae69d134348f3839b82bf24b2c9d2b0571ab2a5

Merge "Migrate tsdr to global-jjb Maven jobs"

Migrate tsdr to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ide407c13b3bffce38769337397198398a81488f8
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:25:47 +0000 (02:25 +0000)]
Updated git submodules

Project: releng/builder master bde01fbe1d1f97d231086b2a4eed5deaaea11328

Merge "Migrate usecplugin to global-jjb Maven jobs"

Migrate usecplugin to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I86a15cf317b1a1156abf27ab46b5e7027c316f42
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:25:34 +0000 (02:25 +0000)]
Updated git submodules

Project: releng/builder master cb442a2449ec6e1f3fe74ffa1e2b359dee97cd5e

Merge "Migrate yangide to global-jjb Maven jobs"

Migrate yangide to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I96a4aef6f1e55851cdaf63137921fa73b8db98e7
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:25:20 +0000 (02:25 +0000)]
Updated git submodules

Project: releng/builder master f407886271b375ad491eda069c5b5a14171c4328

Merge "Migrate of-config to global-jjb Maven jobs"

Migrate of-config to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I2ec0c20da2f75f606f68c6f29c9d2c4ad01e38d1
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:22:38 +0000 (02:22 +0000)]
Updated git submodules

Project: releng/builder master 506ebeaa588eafd7c8685fa75269a7ff548b9191

Merge "Migrate sxp to global-jjb Maven jobs"

Migrate sxp to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I36849e0b7e6005b8870c4295bbac1e4e6a8763f2
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:22:24 +0000 (02:22 +0000)]
Updated git submodules

Project: releng/builder master 1bbaa8b1dfc7c5d70fe42004b3a68d23615d3302

Merge "Migrate snmp4sdn to global-jjb Maven jobs"

Migrate snmp4sdn to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ic0e3c28eab7da9abe96c458fe96e54947e05f9e1
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:22:10 +0000 (02:22 +0000)]
Updated git submodules

Project: releng/builder master d6c6bb7136720d8ff3a46134b5e9216c3281777c

Merge "Migrate snmp to global-jjb Maven jobs"

Migrate snmp to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ib77152c4db0d13afd4e72989174757ad8add8135
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:21:54 +0000 (02:21 +0000)]
Updated git submodules

Project: releng/builder master 482eb559cce738749ed152a72bd28b279e4c7edf

Merge "Migrate snbi to global-jjb Maven jobs"

Migrate snbi to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I18efc47281f9d89366dae2ac20f82c7f07cd5c10
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:21:38 +0000 (02:21 +0000)]
Updated git submodules

Project: releng/builder master c03576911610994112946c41fab2fbe5d7966584

Merge "Migrate sdni-app to global-jjb Maven jobs"

Migrate sdni-app to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I2663b3c64b407517e94419388d323b4848b61484
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:21:27 +0000 (02:21 +0000)]
Updated git submodules

Project: releng/builder master c8e1f0ba336b660af6949da3fe8c2a2dbf00fee5

Merge "Migrate reservation to global-jjb Maven jobs"

Migrate reservation to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Id67dfa65d23084fe15a4fb2c9b8f678d73b6aad9
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:19:31 +0000 (02:19 +0000)]
Updated git submodules

Project: releng/builder master 6b3088f6c4e6a138fa4405fb5c338013733776c3

Merge "Migrate persistence to global-jjb Maven jobs"

Migrate persistence to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I620c697eac1361d32c6697b3dcd03244c885d152
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:19:20 +0000 (02:19 +0000)]
Updated git submodules

Project: releng/builder master ed9d1200f2d0a1b8bcc2186170550d831ea3c11b

Merge "Migrate packetcable to global-jjb Maven jobs"

Migrate packetcable to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ieb66cd7403d206c6cec104058457dbdff7d978bf
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:19:00 +0000 (02:19 +0000)]
Updated git submodules

Project: releng/builder master 0620290518d5a5f611fac30e5a595c29a9f3fc76

Merge "Migrate p4plugin to global-jjb Maven jobs"

Migrate p4plugin to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Iebf0d184229ec062d1666fda13cf9942e36bea3d
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 02:18:48 +0000 (02:18 +0000)]
Updated git submodules

Project: releng/builder master 5f05271aa71e6cde768fb6f6529e5769c5bf38a6

Merge "Migrate ovsdb to global-jjb Maven jobs"

Migrate ovsdb to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I89e67679f37a324ff27133f173143340222f7fad
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 01:07:15 +0000 (01:07 +0000)]
Updated git submodules

Project: releng/builder master 2126be5b0f822b122fe00852d67460401b0df41b

Merge "Migrate openflowplugin to global-jjb Maven jobs"

Migrate openflowplugin to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ic3ee34cfa4544ba5a5ad38a7ba3a5aeef87db1ac
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 01:07:01 +0000 (01:07 +0000)]
Updated git submodules

Project: releng/builder master bb0b2cf56eba58b67c3e4ba017fdda1667ba5a37

Merge "Migrate openflowjava to global-jjb Maven jobs"

Migrate openflowjava to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ieb5d27003fe6832efcb7bbdc4cb2296ffe2e5ceb
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 01:06:39 +0000 (01:06 +0000)]
Updated git submodules

Project: releng/builder master 654492440dd884728e8f932cf9797b579d7c5318

Merge "Migrate ofext/circuitsw to global-jjb Maven jobs"

Migrate ofext/circuitsw to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: Ibe91ae7ff4164904ed8c1318cc4be88dc168ef8f
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 7 Nov 2017 01:06:28 +0000 (01:06 +0000)]
Updated git submodules

Project: releng/builder master 97f4f76d675cbd41275106adb246f0e94bfefa0c

Merge "Migrate ocpplugin to global-jjb Maven jobs"

Migrate ocpplugin to global-jjb Maven jobs

In an effort to consolidate our templates across projects we've migrated
several of our Maven jobs to global-jjb project. This patch updates the
project to use the global-jjb version of the same jobs.

Issue: RELENG-347
Change-Id: I4f45de2e9ea7001c12d1847119d3e4acff326f11
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>