Cédric Ollivier [Sat, 24 Nov 2018 11:19:47 +0000 (12:19 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Add check mode in Functest jjbs
    It allows checking one specific change on LF resources.
    It completes the two modes already defined: daily and gate.
    Change-Id: I7ccadf1ef07533bb549ee365b4f3deedd3d457fe
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Aric Gardner [Fri, 23 Nov 2018 20:58:30 +0000 (15:58 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Perform a second Mock tag
    tagging the sandbox project a second time to verify release automation is working as
    intended.
    Change-Id: Ib03db24d09b7fa28dd1f3893337b8670886e5686
    Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Aric Gardner [Fri, 23 Nov 2018 20:39:16 +0000 (15:39 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Perform a Mock tag
    tagging the sandbox project to verify release automation is working as
    intended.
    Change-Id: Iba5a8e8d612c9a7fb50db41cb5e46777901e70ad
    Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Aric Gardner [Thu, 20 Sep 2018 17:50:02 +0000 (13:50 -0400)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Rework creating tags & branches from release files
    Old method could not properly handle both branching and
    tagging on changes to the release file.
    Proposed method:
    jjb calls:
    jjb/releng/branch-or-tag.sh
    for both verify and merge jobs.
    branch-or-tag determins nature of the change to
    "releases/branch/project.yaml"
    and calls
     releng-release-tagging.sh
    or
     releng-release-create-branch.sh
    The scripts above handle both verify and merge operations
    based on
      if [[ $TAG_EXISTS = false && "$JOB_NAME" =~ "merge" ]];
    and
      if [[ $REF_EXISTS = true && "$JOB_NAME" =~ "merge" ]]; then
    both scripts check that the ref exits in verfiy and merge stages.
    if releng-release-create-branch.sh creates a branch it then also
    calls releases/scripts/create_jobs.py
    Change-Id: Ieb99de5e4df100af59ecc818f52b0831383b2b62
    Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Morgan Richomme [Fri, 23 Nov 2018 16:19:16 +0000 (16:19 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Add triggers to verify Functest"
  - Add triggers to verify Functest
    It runs testcases for all new patchset.
    Change-Id: Ida99e2f40cf3a7a6bc002e81cee27eb67ea62ff0
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Aric Gardner [Wed, 21 Nov 2018 20:30:40 +0000 (20:30 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[fuel] docker build: Add blocking jobs"
  - [fuel] docker build: Add blocking jobs
    Prevent master & stable streams to trigger concurrent builds on the
    same node, which usually leads to one of the jobs failing to acquire
    the DPDK lock on the build server.
    Change-Id: I1f61f1a2eb10eb9373a75b31c74f5d6de60f5334
    Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Alexandru Avadanii [Wed, 21 Nov 2018 17:25:48 +0000 (18:25 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - [fuel] docker build: Add CACHE_INVALIDATE
    JIRA: FUEL-398
    Change-Id: Ie490ec0841dae9748b35fa716e8b9fc0cd0aff63
    Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Aric Gardner [Tue, 20 Nov 2018 20:20:27 +0000 (15:20 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Adding promotion of alex
    This is actually to test somethign in our
    internal jenkins it can be ignored
    Change-Id: I6d6bd1e53280f2f6431ee901c517bb6316dd934a
    Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Aric Gardner [Tue, 20 Nov 2018 13:48:10 +0000 (13:48 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Bug: Doctor all does not work"
  - Bug: Doctor all does not work
    Change-Id: I3654c125192686348c59cd14e0de562e1043011e
    Signed-off-by: Tomi Juvonen <tomi.juvonen@nokia.com>
Aric Gardner [Tue, 20 Nov 2018 13:47:10 +0000 (13:47 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Remove '|' from ovn4nfv plugin unit test builder"
  - Remove '|' from ovn4nfv plugin unit test builder
    Because of the '|' character JJB thinks '!include-raw:...' should be
    executed literally, instead of including the file as the shell script.
    Change-Id: I753dec4b496bd7d9a43c7c5aced17dfb9005f251
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Serena Feng [Tue, 20 Nov 2018 07:37:51 +0000 (07:37 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Adding a new verification job for testapi UI."
  - Adding a new verification job for testapi UI.
    TestAPI web portal is being developed as part of an intern
    project. Angular JS framework is being used to develop UI
    functionalities. Also, corresponding unit tests have been
    written. Grunt JS is javascript task runner which is used
    to run tasks such as unit tests, coverage report etc. grunt e2e is
    the name of the task to run unit tests. Tasks are defiend in
    Gruntfile.js.
    To run the unit tests, google chrome is required. Here, the unit tests are
    ran using headless google chrome. Finally cobertura coverage report is
    generated.
    JIRA: RELENG-382
    Change-Id: Ib12f8dd851276ab0e4116beb122518e9431d5b61
    Signed-off-by: Sakala Venkata Krishna Rohit <rohitsakala@gmail.com>
Tim Rozet [Tue, 20 Nov 2018 03:58:02 +0000 (22:58 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Apex: Fixes unset var checks
    Var checks for unset required proper parameter expansion to avoid
    nounset.
    Change-Id: Ide5db47e2243c8aee0f97369bf3cd0673e7f4bd3
    Signed-off-by: Tim Rozet <trozet@redhat.com>
Trevor Bramwell [Mon, 5 Nov 2018 14:39:31 +0000 (06:39 -0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Promote Alexandru Avadanii to Releng Committer
    Alex has been an active contributor and reviewer to Releng since 2016 maintaing
    the Armband and Fuel jobs. And as the PTL of Fuel he should be granted
    committer rights.
    Change-Id: I5ee698440d2a5d7f0cfee31b83ad40c92702b838
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Tim Rozet [Mon, 19 Nov 2018 18:36:42 +0000 (18:36 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Apex: Fix OS_VERSION detection"
  - Apex: Fix OS_VERSION detection
    When we run deployments for snapshot creation we typically pass in the
    OS_VERSION var so we know what openstack version we are deploying with.
    However when we run a verify/gate job to ensure that the snapshot
    deploys work we do not have this variable, and need to detect it based
    on the OPNFV branch, or if the branch is master, the deploy scenario
    naming scheme.
    Change-Id: If1445dc564d2af59b9740391de56b821b78de0b5
    Signed-off-by: Tim Rozet <trozet@redhat.com>
Trevor Bramwell [Mon, 19 Nov 2018 18:32:05 +0000 (18:32 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Promote Cédric Ollivier to Committer on Releng"
  - Promote Cédric Ollivier to Committer on Releng
    Cédric has been involved in releng since 2017 and submitted numerous
    reviews and patches. As Functest is an integral part of our CI jobs, it
    is important that he be able to merge patches.
    Change-Id: I118eb5c81ff83b5df1af270ea374d65624b5e110
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Mon, 19 Nov 2018 18:28:23 +0000 (18:28 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Fix a nit in functest-virtual.yaml"
  - Fix a nit in functest-virtual.yaml
    Change-Id: I993bac8545d896d1ead25c5f33c9645c52c5d208
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Tim Rozet [Mon, 19 Nov 2018 14:10:37 +0000 (14:10 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Apex: Refactor snapshot pipeline for other types"
  - Apex: Refactor snapshot pipeline for other types
    This patch changes snapshot related scripts to allow for more than just
    the current snapshot type of "csit". This allows us to add other
    snapshot types, including the functest type. The same
    snapshot.properties file will be used to store information for all types
    of snapshots. The snap cache folder structure will remain the same, but
    hold different types of snapshots in the same folders.
    These changes include renaming the URLs for the snapshot artifacts to
    reflect the snapshot type, but remains backwards compatible until enough
    promotions have occurred and other apex snapshot deployment scripts have
    been migrated to the new format.
    Change-Id: If3e47e700b5ad9c95418179042b85814fe389233
    Signed-off-by: Tim Rozet <trozet@redhat.com>
Cédric Ollivier [Mon, 19 Nov 2018 13:38:45 +0000 (14:38 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Fix functest-virtual (sudo + current dirs)
    It completes the previous commit [1] pulling all images.
    [1] https://gerrit.opnfv.org/gerrit/#/c/65203/
    Change-Id: Id32aabf107064689a38d5ffb719ba5023c40296d
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Cédric Ollivier [Mon, 19 Nov 2018 10:50:22 +0000 (11:50 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Pull all containers before running tests
    Else we might test previous containers.
    Change-Id: I53b98f99f7fe5db8ea2087c93cfc58a03103db9e
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Cédric Ollivier [Mon, 19 Nov 2018 08:35:46 +0000 (09:35 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Enable vnf testing when gating Functest
    It adds rally_sanity and vnfs.
    From the time being, only rally_full is excluded (all-in-one).
    Change-Id: I451d1503a0a1633f4e3e68ed272742981f04eb36
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Aric Gardner [Thu, 15 Nov 2018 17:51:35 +0000 (17:51 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Tagging SampleVNF stable/gambia branch for Gambia 7.0.0"
  - Tagging SampleVNF stable/gambia branch for Gambia 7.0.0
    Change-Id: I6312e57c689519bdf65a562db85acfb443ac6c68
    Signed-off-by: Deepak S <deepak.s@linux.intel.com>
Bertrand Souville [Thu, 15 Nov 2018 06:49:46 +0000 (07:49 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Add Promise gambia rtd job
    Change-Id: I122523925a022efe04040a021deebb257109132c
    Signed-off-by: Bertrand Souville <souville@docomolab-euro.com>
Trevor Bramwell [Wed, 14 Nov 2018 18:31:46 +0000 (18:31 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Add Clover gambia rtd job"
  - Add Clover gambia rtd job
    - The docs aren't rebuilding for Clover on stable/gambia
    - Assumption here is that this will remedy
    Change-Id: I3310cd1c2edc5418704957bd348d1fd21c4a9dd6
    Signed-off-by: Eddie Arrage <eddie.arrage@huawei.com>
Victor Morales [Wed, 14 Nov 2018 16:19:32 +0000 (08:19 -0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Replace ovn4nfv-k8s-plugins for ovn4nfv-k8s-plugin
    The ovn4nfv-k8s-plugin was named differently in github.com/opnfv
    as consequence its jenkins job was created using that wrong name.
    This change fix the name of the project.
    Change-Id: I5e17e65613578fb3011f0e7a121933e4e1c4ce8c
    Signed-off-by: Victor Morales <victor.morales@intel.com>
TsaLaGi [Wed, 14 Nov 2018 13:58:56 +0000 (08:58 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Create docker jobs for gambia
    Change-Id: Ifdba9b1964010f4c1e7ca0355a1ad35a217b3518
    Signed-off-by: TsaLaGi <aasmith@redhat.com>
Aric Gardner [Wed, 14 Nov 2018 14:20:14 +0000 (14:20 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Enable ovn4nfv-k8s-plugins project jobs"
  - Enable ovn4nfv-k8s-plugins project jobs
    Change-Id: Ib61a1be6746fc67eddc0766e87837ff5d34cfe34
    Signed-off-by: Victor Morales <victor.morales@intel.com>
Cédric Ollivier [Wed, 14 Nov 2018 09:35:26 +0000 (10:35 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Protect vs build-args not consumed
    BRANCH is useless in case of components which only inherits from tempest.
    The build could simply fail depending on the docker version [1].
    [1] https://build.opnfv.org/ci/job/opnfv-functest-components-latest-build/1/console
    Change-Id: I8ced7282c77463de9684904d141b2f18ae45d3c9
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Cédric Ollivier [Tue, 13 Nov 2018 21:24:58 +0000 (22:24 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Publish Functest gate job
    It mainly conforms with the first jjbs published in functest.
    It only differs regarding the numbers of multijobs (limited to 1
    in releng) and the branch management.
    From the time being, rally-based testcases and vnfs are excluded
    to avoid falsy false.
    The next patch will update the gerrit trigger part.
    Change-Id: Ie1d2acbd9c4f2ad41ecd4cc43d0c13f855251349
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
mbeierl [Tue, 13 Nov 2018 15:34:50 +0000 (10:34 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Add ARM Gambia for StorPerf
    Change-Id: I356944c2b59476f2aa1a7a07d4f326d3fd2a224e
    Signed-off-by: mbeierl <mark.beierl@dell.com>
Aric Gardner [Tue, 13 Nov 2018 14:01:13 +0000 (14:01 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "StorPerf Gambia Containers"
  - StorPerf Gambia Containers
    Create jobs for building StorPerf's Gambia containers.
    Change-Id: I0cab4a3df10edc137d652ddddfe43ac4860e5c35
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Cédric Ollivier [Sat, 3 Nov 2018 11:51:06 +0000 (12:51 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Verify Functest on functest-virtual
    It runs most of healthcheck and tempest-based test cases as a first
    step. All benchmarking tools and all vnfs are not executed yet.
    All active Functest versions are verified thanks to backward
    compatibility ensured by Tempest and then by Functest.
    The jobs are designed to be run in parallel (we could also run all
    Functest versions in parallel instead of separated steps).
    It will be switched to a verify gate in a second step.
    Change-Id: I07cada848dd90f70da8741269692de8646813bdb
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Stephen Wong [Sat, 10 Nov 2018 07:04:04 +0000 (07:04 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Clover release opnfv-7.0.0 (Gambia)
    Change-Id: I9e155bfedf377ee51364972c8c7ca79cbe1aeebf
    Signed-off-by: Stephen Wong <stephen.kf.wong@gmail.com>
Trevor Bramwell [Sat, 10 Nov 2018 00:52:41 +0000 (00:52 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Run Doctor apex sample with all test cases"
  - Run Doctor apex sample with all test cases
    Running Apex sample with both fault_management and maintenance.
    If cannot support maintenance, it will be skipped.
    Apex Congress fault_management will be tested after this test.
    Change-Id: I31562debae5a3f4de6b943a41bff2d89923ea3f0
    Signed-off-by: Tomi Juvonen <tomi.juvonen@nokia.com>
Trevor Bramwell [Sat, 10 Nov 2018 00:51:27 +0000 (00:51 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Create Stable Branch Jobs for nfvbench"
  - Create Stable Branch Jobs for nfvbench
    Change-Id: I1f11b45d22e0af40549831cf65d5a23c2d8ee8fc
    Signed-off-by: jenkins-ci <jenkins-opnfv-ci@opnfv.org>
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Sat, 10 Nov 2018 00:48:22 +0000 (00:48 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Yardstick release 7.0.0 of Gambia"
  - Yardstick release 7.0.0 of Gambia
    Change-Id: Ic5b0ebe6bbdb31181e7a8e847b92915dbb8b431b
    Signed-off-by: rexlee8776 <limingjiang@huawei.com>
Trevor Bramwell [Sat, 10 Nov 2018 00:22:49 +0000 (00:22 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Release notes added for sfc"
  - Release notes added for sfc
    Change-Id: Ia0b28e0051fa4c914e1fa4f31a8f1633aab1fb08
    Signed-off-by: Manuel Buil <mbuil@suse.com>
Trevor Bramwell [Fri, 9 Nov 2018 22:49:57 +0000 (22:49 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[opnfv-7.0.0] Fuel, Armband release"
  - [opnfv-7.0.0] Fuel, Armband release
    Change-Id: I961f1aa0fbf22b219acb33806a78af99ca889dcb
    Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Aric Gardner [Fri, 9 Nov 2018 19:52:59 +0000 (19:52 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Disable Jobs Set to Run on 'joid-virtual'"
  - Disable Jobs Set to Run on 'joid-virtual'
    Since there are no longer any nodes labeled 'joid-virtual', jobs set to
    run on joid-virtual are disabled until another virtual host is added for
    JOID.
    Change-Id: Ibe9eca5f094d08ccb5260e7e28b24f5e867a8c29
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
ahothan [Fri, 9 Nov 2018 17:06:36 +0000 (09:06 -0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Add branch for gambia
    Change-Id: Ib252ca0e5edb2efb5b85fb60c8b83de7704113e5
    Signed-off-by: ahothan <ahothan@cisco.com>
Trevor Bramwell [Fri, 9 Nov 2018 05:45:35 +0000 (05:45 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Move Barometer Builds to lf-build2"
  - Move Barometer Builds to lf-build2
    Adds specific parameter for 'lf-build2' so it can be referenced with
    the '{build-server}-defaults' syntax and assigns barometer verify and
    merge jobs to lf-build2.
    Change-Id: If68dfc4e6ea81884870047360051795407c15af3
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Thu, 8 Nov 2018 19:27:09 +0000 (14:27 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - RTD: Enable Gambia stream
    Enable Gambia read the docs stream for all projects that have
    a gambia branch
    Also added edgecloud rtd job as it was missing
    Change-Id: I64d159cde0200871cd4ba3d2c071853c9bd502c1
    Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Aric Gardner [Thu, 8 Nov 2018 19:29:55 +0000 (19:29 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[dovetail] remove the stream check for fuel"
  - [dovetail] remove the stream check for fuel
    Now it set that only running Dovetail jobs on Fuel fraser.
    Remove the check item.
    The mandatory test cases will run on all ha scenarios.
    The optional test cases only need to run twice a week on ha scenarios
    to save the time.
    Change-Id: I7f7dd93440bb40e7bc9964fd744bb002ef88f77b
    Signed-off-by: xudan <xudan16@huawei.com>
Aric Gardner [Thu, 8 Nov 2018 19:22:58 +0000 (19:22 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[ipv6] Enable Voting for Documentation Builds"
  - [ipv6] Enable Voting for Documentation Builds
    'tox -e docs' exists and is working for ipv6, and removing
    'gerrit-skip-vote' will make the job start voting on new patchsets.
    Change-Id: I6d6eb09752664976214af13f090d7eab6106657c
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Thu, 8 Nov 2018 19:22:47 +0000 (19:22 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[daisy] Enable voting for documentation builds"
  - [daisy] Enable voting for documentation builds
    Changes to daisy's 'docs/' directory will set -1/+1 verification
    depending on whether or not the docs build without error.
    Change-Id: I1f74c41cb02769d1ab114918d400d9d7afd2a8c3
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Thu, 8 Nov 2018 19:22:32 +0000 (19:22 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[stor4nfv] Enable voting for docs verify job"
  - [stor4nfv] Enable voting for docs verify job
    Change-Id: Iafcc1dfdf331cec67545abdb3bfc863312dea49f
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Thu, 8 Nov 2018 19:22:17 +0000 (19:22 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Install Collectd on CentOS Build Servers"
  - Install Collectd on CentOS Build Servers
    Collectd is needed by the barometer project as it contains several
    libraries they link against including dpdkevents.
    Change-Id: I43ce41b7116e168a0211c795b17a5a40ee585930
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Thu, 8 Nov 2018 19:22:01 +0000 (19:22 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Sort CentOS build server package to be installed"
  - Sort CentOS build server package to be installed
    Sorts the package list alphabetically so its quicker to read which
    packages are installed.
    Change-Id: I784cfa773aed226301017d5ea64f0485e60c1c4e
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Alexandru Avadanii [Thu, 8 Nov 2018 16:16:28 +0000 (17:16 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - [fuel, armband] RTD: Enable Gambia stream
    Change-Id: I97631f1d4902f8b8d3c2de8c4b086ffbad40a0f2
    Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Trevor Bramwell [Wed, 7 Nov 2018 18:23:59 +0000 (10:23 -0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Enable Promise Documentation Verification
    As the tox file and 'docs' env now exists, the promise rtd job can start
    voting.
    Change-Id: I113bf4b4ef58a4c3339242a1542780cac85fffb5
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Wed, 7 Nov 2018 17:27:11 +0000 (12:27 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Only trigger docs-verify-rtd-master for opnfvdocs
    also remove hacky logic that deletes opnfvdocs clone and then
    clones project
    Change-Id: I4c0687af6d31b6759e0f6ccf275d968b9d71a7d9
    Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Trevor Bramwell [Wed, 7 Nov 2018 04:53:50 +0000 (04:53 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Create Stable Branch Jobs for container4nfv"
  - Create Stable Branch Jobs for container4nfv
    Change-Id: Icc0999a5f9dcb2052dc34e21c8de754e9aec0909
    Signed-off-by: jenkins-ci <jenkins-opnfv-ci@opnfv.org>
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Wed, 7 Nov 2018 00:37:18 +0000 (00:37 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Create stable gambia branch for container4nfv"
  - Create stable gambia branch for container4nfv
    Change-Id: Ifb9649f17c951af36a7519cb6d8e07f633280763
    Signed-off-by: Xuan Jia <jason.jiaxuan@gmail.com>
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Wed, 7 Nov 2018 00:36:05 +0000 (00:36 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Gambia Stable branch for Availability project"
  - Gambia Stable branch for Availability project
    Creating the Gambia stable branch for availability
    JIRA: HA-32
    Change-Id: Ie697ba88703f13a3447084340ee06d934fe51cc9
    Signed-off-by:fuqiao@chinamobile.com
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Wed, 7 Nov 2018 00:35:17 +0000 (00:35 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Create Gambia branch for Edge Cloud Project"
  - Create Gambia branch for Edge Cloud Project
    Creation of the Gambia stable branch for the edge cloud project
    JIRA: EDGE-1
    Change-Id: I87c787a5abfc82f6e71c55fb1593836dd86ef2c8
    Signed-off-by: fuqiao@chinamobile.com
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Wed, 7 Nov 2018 00:33:53 +0000 (00:33 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Create Stable Branch Jobs for vswitchperf"
  - Create Stable Branch Jobs for vswitchperf
    Change-Id: I0918448fc96f49d51a2657bad5538ce9e6af990c
    Signed-off-by: jenkins-ci <jenkins-opnfv-ci@opnfv.org>
Trevor Bramwell [Wed, 7 Nov 2018 00:22:23 +0000 (00:22 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "VSPERF: Gambila Stable Branch"
  - VSPERF: Gambila Stable Branch
    Change-Id: I2bff1e3e549cf3afbbb295f2959dc8f983c3ee9b
    Signed-off-by: Sridhar K. N. Rao <sridhar.rao@spirent.com>
Trevor Bramwell [Tue, 6 Nov 2018 22:23:03 +0000 (22:23 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[dovetail] add gambia jobs"
  - [dovetail] add gambia jobs
    Change-Id: I84e29a6d1ffaed59b2490f4c2e417c0456eb2ca7
    Signed-off-by: xudan <xudan16@huawei.com>
Trevor Bramwell [Tue, 6 Nov 2018 22:20:55 +0000 (22:20 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Adding Doctor opnfv-7.0.1 tag"
  - Adding Doctor opnfv-7.0.1 tag
    Change-Id: Iaf0ff80c5716aa2051c04b0241a2d19d1709f0f1
    Signed-off-by: Tomi Juvonen <tomi.juvonen@nokia.com>
Aric Gardner [Tue, 6 Nov 2018 16:35:55 +0000 (11:35 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Fuel RTD job was missed
    Adding it back, I removed it from fuel-project-jobs
    and forgot to add it back as its own file
    Change-Id: I9d84a979cd5323d72ec858b310cb1b786c5f1207
    Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Aric Gardner [Mon, 5 Nov 2018 20:31:23 +0000 (15:31 -0500)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Update Global JJB to v0.26.1
    Release notes:
    https://docs.releng.linuxfoundation.org/projects/global-jjb/en/latest/release-notes.html#v0-26-1
    XMLDIFF: https://hastebin.com/abojibiguh.bash
    Change-Id: I3e9c50c5efee331b7f05ecebb8bfe7e554a95f68
    Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Trevor Bramwell [Mon, 5 Nov 2018 17:07:26 +0000 (09:07 -0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Fix SFC Verify Job Virtualenv Location
    '/var/cache' isn't writable by others, but /var/tmp should be.
    Also fixed the issue of not sourcing 'activate' within the bin path.
    Change-Id: Ib7830cc33543227d6b67cac00edc212d889aec10
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Mon, 5 Nov 2018 15:55:06 +0000 (07:55 -0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Install Tox in a virtualenv for SFC
    This should alleviate the current issue with tox version conflicts
    caused by global-jjb limiting the tox version.
    Change-Id: I84644be109963a612c0679cb58f21b0daf649e56
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Fatih Degirmenci [Mon, 5 Nov 2018 10:40:05 +0000 (10:40 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[XCI] Remove inventory for prepare-tests.yml"
  - [XCI] Remove inventory for prepare-tests.yml
    We are finally fetching all ODL variables from inside the scenarios.
    Therefore, we don't need to use the inventory:
    ${XCI_PATH}/.cache/repos/openstack-ansible/inventory/dynamic_inventory.py
    Change-Id: I91d17cb899a037887bc97441a1c1e37ff57b4850
    Signed-off-by: Manuel Buil <mbuil@suse.com>
Trevor Bramwell [Fri, 2 Nov 2018 16:18:54 +0000 (16:18 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Deploy Pharos Dashboard on changes to compose file"
  - Deploy Pharos Dashboard on changes to compose file
    Instead of deploying the dashboard when changes to any file happens,
    only changes to the docker-compose.yml file should trigger a deploy.
    The deployment process would then be as follows:
      - Tag pharos-tools
      - Create a patch to set the tag in 'docker-compose.yml'
      - Merge the patch
      - New version of dashboard deployed at specific tag
    Change-Id: I67a6237f00b96021df24e7a79a063d31f43df5a6
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Fri, 2 Nov 2018 16:18:40 +0000 (16:18 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[dovetail] disable Dovetail jobs on master"
  - [dovetail] disable Dovetail jobs on master
    As Cedirc suggested, Dovetail should only run in Installers' Gambia jobs because
    Dovetail now integrates Functest Gambia.
    Disable Dovetail master jobs.
    Change-Id: Id39993801b6f98e77fc1a86f4c099b01bcfa8770
    Signed-off-by: xudan <xudan16@huawei.com>
Trevor Bramwell [Fri, 2 Nov 2018 16:17:59 +0000 (16:17 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Pharos Dashboard JIRA Logins"
  - Fix Pharos Dashboard JIRA Logins
    If the dashboard is built locally, the keys get copied to the right
    place, but as the dashboard images are now pulled and built remotely,
    the JIRA keys need to be copied into the running web container.
    Change-Id: Ia5edb4f994465ab2626973b8a36add9bc80a0d9d
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Fri, 2 Nov 2018 14:45:11 +0000 (14:45 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Enable odl-bgpvpn-noha daily job on fuel"
  - Enable odl-bgpvpn-noha daily job on fuel
    JIRA: FUEL-393
    This patch enables odl-bgpvpn-noha scenario on daily jjbs for fuel
    installer.
    Change-Id: I89e85ee004c08aea07714e678fb223a7721b29ec
    Signed-off-by: Stamatis Katsaounis <mokats@intracom-telecom.com>
Tim Rozet [Thu, 1 Nov 2018 20:41:11 +0000 (16:41 -0400)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Apex: Fix functest docker tag in gate job
    Fixes passing quotes as the value for the variable, so now what is
    passed is just an empty string.
    Change-Id: I9abb681374934fe4cf7c8024118278674880f7e9
    Signed-off-by: Tim Rozet <trozet@redhat.com>
Aric Gardner [Thu, 1 Nov 2018 19:18:54 +0000 (19:18 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[builde servers] Update manifest-tool URL"
  - [builde servers] Update manifest-tool URL
    The fact returned for 'ansible_architecture' is 'x86_64' for non-ARM
    servers. Hard coding this now in order to pull the correct URL of the
    manifest tool.
    When arm build servers are included in this list we'll set a fact for
    the architecture needed in the URL.
    Change-Id: I1c89e8a87cc7f2ae386973f3f1088f881ae5df71
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Thu, 1 Nov 2018 18:51:18 +0000 (18:51 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Update Pharos Dashboard Jobs"
  - Update Pharos Dashboard Jobs
    Moves the pharos dashboard jobs to their own file sperate and deploys
    the dashboard when changes are merged to master.
    Note: this may need to be manually triggered due to the timing
          between the container being built and it being availble to be pulled.
    Also includes the following changes to the job:
      - Uploads backups to Google Storage
      - Remove sudo usage as docker can be ran as the Jenkins user
      - Renames jobs to match general naming scheme
    JIRA: PHAROS-394
    Change-Id: I516c4414d7b0158f1f8478214c10f0aa7d176739
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Thu, 1 Nov 2018 18:39:12 +0000 (18:39 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Add builds for Barometer DMA docker image"
  - Add builds for Barometer DMA docker image
    Push OPNFV docker builds for barometer-dma image
    Change-Id: I50373233254b8315c48544bae916ccf8485e640d
    Signed-off-by: Tomofumi Hayashi <tohayash@redhat.com>
Aric Gardner [Thu, 1 Nov 2018 18:12:58 +0000 (18:12 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Disable jobs on zte-virtual5"
  - Disable jobs on zte-virtual5
    This node has been offline for some time. Disabling the jobs queued for
    it to reduce the queue until it comes back online.
    Change-Id: I305dc0376c331d244599dbb4edda2e3b880383be
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Wed, 31 Oct 2018 21:52:16 +0000 (21:52 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Remove References to Securedlab"
  - Remove References to Securedlab
    PDF/IDFs have been moved out of securedlab to the Pharos repo. Any
    references to pulling the files from securedlab have been changed to
    look in pharos.
    Change-Id: I04608da51afdbe9ec55e3dd23c501c99946b58bb
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Tim Rozet [Wed, 31 Oct 2018 20:42:38 +0000 (20:42 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Disable Flex jobs"
  - Disable Flex jobs
    Both flex PODs have been offline for a while. Disabling the Apex jobs
    scheduled on them will reduce the queue and they can be re-enabled once
    they come back online.
    Change-Id: I2f82379225ae6fc728fc655680e5ee8799a4bbbb
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Wed, 31 Oct 2018 20:42:27 +0000 (20:42 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[fuel] Handle CI DEBUG mode"
  - [fuel] Handle CI DEBUG mode
    Change-Id: Id169e19cd465d264525bfde843e7764d4f4d5d16
    Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Trevor Bramwell [Wed, 31 Oct 2018 19:05:36 +0000 (19:05 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "joid: Disable jobs"
  - joid: Disable jobs
    This change disables JOID jobs to keep build queue shorter than it is now.
    They can be enabled back once its situation is clarified.
    Change-Id: I5acdb60e5a827899fd86084a949e940d69b0a7ac
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Cédric Ollivier [Tue, 30 Oct 2018 19:52:46 +0000 (20:52 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Set tags for first gambia and hunter releases
    Change-Id: Ia48c3dce052de255fb15ecbfc02656b9ed3e7f52
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Cédric Ollivier [Tue, 30 Oct 2018 18:36:40 +0000 (19:36 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Revert "Avoid jenkins substitutions"
    This reverts commit 
00431827b1a41f55fb700e69bfb229ccebc9c3f0.
    Change-Id: I77f0500b5e712745799dc9a7c7b94ce840e1f148
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Trevor Bramwell [Tue, 30 Oct 2018 19:32:33 +0000 (12:32 -0700)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - [Apex] Move Functest Scenario selection to script
    When using 'shell' builder directly '{}' is interpreted as a JJB
    substitution. This can be escaped with '{{}}' but breaks due to Apex
    use of Jinja2. Moving the entire script to a shell fixes this issue.
    Change-Id: I874a45cf25ca69373275849f98c89c534f3de0bb
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Tue, 30 Oct 2018 17:56:10 +0000 (17:56 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Fix ODL restconf port if Compass"
  - Fix ODL restconf port if Compass
    It conforms with the previous port which was hardcoded in odl.py.
    The default value (8181) seems wrong [1].
    [1] https://build.opnfv.org/ci/view/functest/job/functest-compass-baremetal-daily-gambia/7/console
    Change-Id: I9142d4f20a29b1f46b06bb1fed5569a299f55eff
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Tim Rozet [Tue, 30 Oct 2018 17:03:45 +0000 (17:03 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Write the right default values in DOCKER_TAG"
  - Write the right default values in DOCKER_TAG
    It avoids facing with wrong substitutions [1]
    [1] https://build.opnfv.org/ci/job/functest-apex-baremetal-daily-gambia/23/console
    Change-Id: I4b8c990add51024d7984cd10668a33dd7c50c395
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Trevor Bramwell [Tue, 30 Oct 2018 13:47:13 +0000 (13:47 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Avoid jenkins substitutions"
  - Avoid jenkins substitutions
    It's currently failing as DOCKER_TAG is replaced by '' [1].
    [1] https://build.opnfv.org/ci/job/functest-apex-baremetal-daily-gambia/21/console
    Change-Id: I3737c683fd85f6c426fdf2720b016f3452eab0b6
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Aric Gardner [Tue, 30 Oct 2018 12:44:55 +0000 (12:44 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Create Stable Branch Jobs for bottlenecks"
  - Create Stable Branch Jobs for bottlenecks
    Change-Id: I1ddfca1afcaecf5068814276c64d312cf40455b4
    Signed-off-by: jenkins-ci <jenkins-opnfv-ci@opnfv.org>
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Fatih Degirmenci [Tue, 30 Oct 2018 10:00:45 +0000 (10:00 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Add the huawei-pod8 into CI pod list"
  - Add the huawei-pod8 into CI pod list
    Add huawei-pod8 into CI pod list for running
    the functest-kubernetes.
    Remove the arm-virtual3 pod from CI pod list.
    Change-Id: I0aec57f41fc4a49302e687a2600417eea6c29a0b
    Signed-off-by: Jingzhao Ni <jingzhao.ni@arm.com>
Cédric Ollivier [Tue, 30 Oct 2018 09:50:27 +0000 (10:50 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Fix param serialization in apex jjbs
    DEPLOY_SCENARIO wrongly contains DOCKER_TAG [1].
    [1] https://build.opnfv.org/ci/job/functest-apex-baremetal-daily-gambia/20/console
    Change-Id: I85ddd47e4c15b36f507684d6d7fb9b0d90347507
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
earrage [Mon, 29 Oct 2018 22:23:37 +0000 (15:23 -0700)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Modify clovisor name to fit naming convention
    - Edit name of container from clovisor to clover-clovisor to match
    naming convention
    Change-Id: I37a7e6f4cdb5295bd8a0e92dcc3f8c43605adcb8
    Signed-off-by: earrage <eddie.arrage@huawei.com>
earrage [Mon, 29 Oct 2018 17:34:38 +0000 (10:34 -0700)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Add builds for Clover Spark and Clovsior
    - Push OPNFV docker builds for clover-spark, clover-spark-submit,
    and clovisor containers.
    Change-Id: If42ab565a48569137153511aa109bbaeeb6968aa
    Signed-off-by: earrage <eddie.arrage@huawei.com>
Trevor Bramwell [Mon, 29 Oct 2018 16:48:28 +0000 (16:48 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "bottlenecks gambia branch"
  - bottlenecks gambia branch
    Add Gambia branch to Bottlenecks project
    Change-Id: Ie698b459abcb066ac767dee72f957b9c96c7eabd
    Signed-off-by: Yang (Gabriel) Yu <Gabriel.yuyang@huawei.com>
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Mon, 29 Oct 2018 16:48:08 +0000 (16:48 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Create Stable Branch Jobs for auto"
  - Create Stable Branch Jobs for auto
    Change-Id: I1541a0e277891b526a671953bf33daab842b524e
    Signed-off-by: jenkins-ci <jenkins-opnfv-ci@opnfv.org>
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Mon, 29 Oct 2018 15:30:14 +0000 (15:30 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Run Doctor fault management and maintenance in baremetal"
  - Run Doctor fault management and maintenance in baremetal
    Run also fault management in Nokia POD to have baremetal results
    Change-Id: I55afee4c42365ca5d302c8ead4cbf0ad3b956e74
    Signed-off-by: Tomi Juvonen <tomi.juvonen@nokia.com>
Trevor Bramwell [Mon, 29 Oct 2018 15:27:27 +0000 (15:27 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[fuel] Define Docker tag for stable branches"
  - [fuel] Define Docker tag for stable branches
    Change-Id: Ic3c99eee282641eb15880fe18578cbee534308e5
    Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Tim Rozet [Mon, 29 Oct 2018 13:37:55 +0000 (13:37 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Write tempest_conf.yaml for all OPNFV installers"
  - Write tempest_conf.yaml for all OPNFV installers
    It follows "Move tempest logics in tempest_conf.yaml" [1] and then
    allows passing tempest_full and tempest_scenario in OPNFV gates.
    It set all params for all OPNFV installers according to their last
    runs [2][3][4].
    Live migration is out of that custom params as it's currently
    considered as a key feature [5].
    tempest_conf.yaml should be installer-centric and shouldn't take
    scenarios into account.
    It's unclear which installers support glance API v1 which is
    deprecated. Any installer can ask for testing it if supported.
    At least Apex doesn't support it [6].
    Shelve is currenlty disabled because testing it could fail the
    whole tempest run if unsupported. We are missing data about which
    installer may support it.
    [1] https://gerrit.opnfv.org/gerrit/#/c/64067
    [2] Apex: https://artifacts.opnfv.org/logs/functest/lf-pod1/2018-10-25_02-17-25/tempest_full/tempest-report.html
    [3] Compass: https://artifacts.opnfv.org/logs/functest/huawei-virtual9/2018-10-24_04-54-25/tempest_full/tempest-report.html
    [4] Fuel: https://artifacts.opnfv.org/logs/functest/lf-pod2/gambia/2018-10-25_05-57-54/tempest_full/tempest-report.html
    [5] https://artifacts.opnfv.org/logs/functest/ericsson-pod1/gambia/2018-10-27_06-10-07/tempest_full/tempest-report.html
    [6] https://artifacts.opnfv.org/logs/functest/lf-pod1/gambia/2018-10-23_10-34-07/tempest_full/tempest-report.html
    Change-Id: I17c8a2d738daaf1c2e97755c99f8886da8a531aa
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Cédric Ollivier [Mon, 29 Oct 2018 02:19:47 +0000 (03:19 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Define DOCKER_TAG in Functest daily job
    It defines DOCKER_TAG as parameter in Functest daily job.
    It also fixes DOCKER_TAG default value in properties files and then
    complete the previous commit [1].
    It should fix the current gate issues [2].
    [1] https://gerrit.opnfv.org/gerrit/#/c/64069/
    [2] https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-gambia/18/console
    Change-Id: Ia531ca68a455cc20294e123286062265b9b79d6f
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Cédric Ollivier [Fri, 26 Oct 2018 12:11:43 +0000 (14:11 +0200)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Set empty strings in DOCKER_TAG by default
    It let functest-alpine process branches right after [1].
    [1] https://build.opnfv.org/ci/job/functest-apex-virtual-suite-master/241/console
    Change-Id: I6ed804fe9f3628f67421157433e09da3bcbf585c
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
    Signed-off-by: Tim Rozet <trozet@redhat.com>
mei mei [Fri, 26 Oct 2018 10:19:07 +0000 (10:19 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[compass4nfv]Add missing jobs"
  - [compass4nfv]Add missing jobs
    This patch add the bottlenecks and dovetail jobs for compass Gambia branch.
    Change-Id: If5e4180c69c14042a075c68373a4262388f20da0
    Signed-off-by: wutianwei <wutianwei1@huawei.com>
Tim Rozet [Thu, 25 Oct 2018 16:30:18 +0000 (12:30 -0400)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Apex: Fix functest docker tag injection
    The file needs to at least exist for the inject to work in the case
    where the scenario is not rocky.
    Change-Id: I2fca0574d69c08a13d0cc797741b276281eb3600
    Signed-off-by: Tim Rozet <trozet@redhat.com>
Trevor Bramwell [Wed, 24 Oct 2018 22:27:21 +0000 (22:27 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Remove OPNFV Docs Euphrates Jobs"
  - Remove OPNFV Docs Euphrates Jobs
    The release is now two past and we don't need to continue building these
    docs.
    Change-Id: I072d22b69d73c06245a4efcf14661e0c7acacefc
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Wed, 24 Oct 2018 22:26:57 +0000 (22:26 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Create Stable Branch Jobs for opnfvdocs"
  - Create Stable Branch Jobs for opnfvdocs
    Change-Id: If835ce2ab7586fc503843089541d50344ce8c19e
    Signed-off-by: jenkins-ci <jenkins-opnfv-ci@opnfv.org>
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Trevor Bramwell [Wed, 24 Oct 2018 21:29:43 +0000 (21:29 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Create stable/gambia branch for docs"
  - Create stable/gambia branch for docs
    Change-Id: Ib5d5734536869dc08a787ad6624849913b8d5f4b
    Signed-off-by: Sofia Wallin <sofia.wallin@ericsson.com>
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Aric Gardner [Wed, 24 Oct 2018 20:54:28 +0000 (16:54 -0400)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Create Stable Branch Jobs for storperf
    Changed all instances of fraser to gambia in the
    storperf directory
    Change-Id: I1f28617bfe018c0fb56753bbb9c0e939aeff3073
    Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>