Ross Brattain [Wed, 4 Oct 2017 20:38:43 +0000 (13:38 -0700)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - NSB: move interface probe to VNF, and attempt driver-only probe first
    If no devices are present we can't detect MAC address so
    we can't match Heat ports to interfaces.
    If only the driver is missing we can try to probe the driver using
    lspci.  We can use lspci to ask the kernel what driver it should use
    for the PCI device.
    If we can't probe at all because the device is already bound, we can
    use dpkd-devind to find all the PCI address we care about and create a
    map with PCI device and real kernel driver.
    Then we can dpdk force rebind to the kernel driver.
    Once we have rebound to the kernel driver we can detect
    MAC address and all the other attributes that are required.
    Fix VnfSshHelper to allow override of wait timeout
    And a bunch of other refactors that got swept up in this
    JIRA: YARDSTICK-835
    Change-Id: I14cb657ed289a77941d048345d06ced5b5d5da52
    Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Alexandru Avadanii [Thu, 1 Mar 2018 17:23:01 +0000 (18:23 +0100)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - [fuel, armband] Fix broken regex in dovetail cond
    Fixes: 
af7df31
    Change-Id: I13e20591ce82792a12a514ae62e3b3dd4ed50e65
    Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Alexandru Avadanii [Thu, 1 Mar 2018 16:57:19 +0000 (16:57 +0000)]
 
Update git submodules
* Update docs/submodules/fuel from branch 'master'
  - Merge "lib.sh: Validate pdf/idf with pharos schema"
  - lib.sh: Validate pdf/idf with pharos schema
    Run the pharos yaml schema validation for configuration files
    before expanding them
    JIRA: FUEL-341
    Change-Id: Ia1d69f53265876683a1b6674665a9594ba7dae16
    Signed-off-by: Guillermo Herrero <guillermo.herrero@enea.com>
Cedric Ollivier [Thu, 1 Mar 2018 16:53:37 +0000 (16:53 +0000)]
 
Update git submodules
* Update docs/submodules/functest from branch 'master'
  - Merge "Add xtesting in upper-constraints.txt"
  - Add xtesting in upper-constraints.txt
    functest-kubernetes requires xtesting and still reads this file.
    Change-Id: I18d357cc88ae9a7e80aca568d408823291dc2ab3
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Cedric Ollivier [Thu, 1 Mar 2018 16:53:30 +0000 (16:53 +0000)]
 
Update git submodules
* Update docs/submodules/functest from branch 'master'
  - Merge "Set universal wheels"
  - Set universal wheels
    Change-Id: I869679def8913ac804899655d80dbc6a830a6378
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Manuel Buil [Tue, 27 Feb 2018 17:09:32 +0000 (18:09 +0100)]
 
Update git submodules
* Update docs/submodules/sfc from branch 'master'
  - Bug fix: Problem with SNAPs integration
    SNAPs changed the API:
    https://github.com/opnfv/snaps/commit/
c711acf8ae3e4ad6f746500747857bcc9fd6f7be#diff-0b922a3e087121238d5a8b08ef5b894aR480
    Now we require to pass keystone client to get the neutron port
    Change-Id: I93fa4b127255c1a078aa3644773b7c8b886cea6d
    Signed-off-by: Manuel Buil <mbuil@suse.com>
Ross Brattain [Thu, 1 Mar 2018 16:17:51 +0000 (16:17 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Add methods to get an existing stack"
  - Add methods to get an existing stack
    * Add yardstick/orchestrator/heat.py:HeatStack.get
    * Add yardstick/benchmark/contexts/heay.py:HeatContext.retrieve_existing_stack
    JIRA: YARDSTICK-886
    Change-Id: I6974b79a25f98066a49b1bc8ccd11383e7962091
    Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Ross Brattain [Thu, 1 Mar 2018 16:16:12 +0000 (16:16 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Use context name instead of key_uuid"
  - Use context name instead of key_uuid
    context.key_uuid is only used as a suffix for the key files.
    There is already a unique ID associated with a the context;
    the context name includes a task ID, which is a UUID.
    This patch sets context.key_uuid to to context.name instead of
    generating a separate UUID
    As a result, get_short_key_uuid() is not needed.
    JIRA: YARDSTICK-1028
    Change-Id: Id175061d6cfe23a068bb3d12ce176c1f176e8236
    Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Ross Brattain [Thu, 1 Mar 2018 16:15:11 +0000 (16:15 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge changes from topics 'feat/keep_vnf', 'YARDSTICK-886'
    * changes:
      Add _create_new_stack method
      Update TaskParser to deal with qualified name in Context
      Add qualified name to Context
  - Add _create_new_stack method
    The logic for creating a new stack in contexts/heat.py:HeatContext
    can added to a method to make the code eassier to read and test.
    This is in preparation for an update to deploy() that would allow
    an existing stack to be reused, or a new stack created.
    By having the create_new_stack logic in a new method, deploy()
    becomes easier to read and test.
    JIRA: YARDSTICK-886
    Change-Id: I7af01e2209a3460658f8db0249b7c620743cced0
    Signed-off-by: Emma Foley <emma.l.foley@intel.com>
  - Update TaskParser to deal with qualified name in Context
    The context name depends on the defined name in the testcase input
    file, the task ID and the flags of the context.
    If the context is going to be undeployed at the end of the test, the
    task ID is suffixed to the name to avoid interferences with previous
    deployments. If the context needs to be deployed at the end of the
    test, the name assigned is kept.
    This patch makes this process transparent to the developer.
    This patch modifies how TaskParser determines the correct context name,
    taking into account that the name might change based on context flags.
    JIRA: YARDSTICK-886
    Change-Id: I44da30dac562c1a4166e084645ae91c17798651d
    Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
    Signed-off-by: Emma Foley <emma.l.foley@intel.com>
  - Add qualified name to Context
    The context name depends on the defined name in the testcase input
    file, the task ID and the flags of the context.
    If the context is going to be undeployed at the end of the test, the
    task ID is suffixed to the name to avoid interferences with previous
    deployments. If the context needs to be deployed at the end of the
    test, the name assigned is kept.
    This patch makes base.Context use Flags when initialising contexts,
    this sets the name property based on the no_setup and no_teardown
    flags.
    Since base.Context is an abstract class, it cannot be instantiated.
    However, there are some non-abstract methods that need testing.
    Since DummyContext does not override any of these methods, it can be used for
    testing.
    JIRA: YARDSTICK-886
    Change-Id: I1447fb5ed447691eaeb0a97f928c0b3333799d07
    Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
    Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Gordon Kelly [Wed, 28 Feb 2018 21:35:13 +0000 (21:35 +0000)]
 
Update git submodules
* Update docs/submodules/barometer from branch 'master'
  - ansible: add roles to launch ves and kafka containers
    Change-Id: Ida03c47bbe94600b034c95bd0d795e62c253303c
    Signed-off-by: Gordon Kelly <gordon.kelly@intel.com>
Ross Brattain [Thu, 1 Mar 2018 15:11:31 +0000 (15:11 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "vFW scale-up template."
  - vFW scale-up template.
    Added topology and traffic profile templates
    Added support for using JinJa2 templates in topology definition
    Added support for static pipeline configs for SampleVNFs
    JIRA: YARDSTICK-1043
    Change-Id: Iab99fd5b5ad69ca32ee70b9fe47779387ad27e7f
    Signed-off-by: Chornyi, TarasX <tarasx.chornyi@intel.com>
    Signed-off-by: Mytnyk, Volodymyr <volodymyrx.mytnyk@intel.com>
Ross Brattain [Thu, 1 Mar 2018 15:11:20 +0000 (15:11 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Add arguments to the traffic profile render"
  - Add arguments to the traffic profile render
    In order to render configurable traffic profiles in NSB test cases,
    a new variable is introduced: "extra_arg". The content of
    this variable is added to the VNFD render data, under a key called
    "extra_args".
    This will allow the user to define Jinja templates for traffic profiles.
    E.g.:
      $ cat test_case_definition.yml
      scenarios:
      - type: NSPerf
        traffic_profile: traffic_profile.yml
        extra_args:
          vports: 10
      $ cat traffic_profile.yml
      {% set vports = get(extra_args, 'vports', '0') or 4 %}
      {% for vport in range(vports|int) %}
      uplink_{{vport}}:
        data...
      {% endfor %}
    JIRA: YARDSTICK-946
    Change-Id: Ib3c1f2d89efa012772edf2156e97d5f4742a6b80
    Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Ross Brattain [Thu, 1 Mar 2018 15:11:03 +0000 (15:11 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Import "traffic_profile" modules only once"
  - Import "traffic_profile" modules only once
    "traffic_profile" modules should be imported only once. Every time
    TrafficProfile.get is called, the modules under
    "yardstick.network_services.traffic_profiles" are loaded [1]. Instead
    of this, the modules should be registered only once the first time
    "yardstick.network_services.traffic_profiles.base" is loaded. This
    will reduce the execution time and will avoid unnecessary calls.
    [1] https://github.com/opnfv/yardstick/blob/
d2c7cc4e9768ed003257a95c92cdb278d516761b/yardstick/network_services/traffic_profile/base.py#L36-L37
    JIRA: YARDSTICK-951
    Change-Id: Ia3565378ba3a1377fcb0aea8bda50ef8189414fd
    Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Fatih Degirmenci [Thu, 1 Mar 2018 14:31:03 +0000 (14:31 +0000)]
 
Update git submodules
* Update docs/submodules/releng-xci from branch 'master'
  - Do not fail the if virsh command fails
    Change-Id: Id9c55b45719399c6c78c0d3d8b97926a2907b7f8
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Fatih Degirmenci [Thu, 1 Mar 2018 14:29:13 +0000 (14:29 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - xci: Do not fail the job if virsh command fails
    Change-Id: Ie5fae322f98ec6c9c2236486642c0d71c6a04aae
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
xudan [Tue, 27 Feb 2018 06:54:02 +0000 (01:54 -0500)]
 
Update git submodules
* Update docs/submodules/dovetail from branch 'master'
  - Bugfix: Dovetail tool will crash when hosts.yaml file with incorrect format
    If the hosts.yaml file is like,
    —
    hosts_info:
    192.168.141.101:
    it will raise an exception,
    File "/usr/local/lib/python2.7/dist-packages/dovetail/utils/dovetail_utils.py",
    line 227, in add_hosts_info
    names=hostnames)
    File "/usr/local/lib/python2.7/dist-packages/python_hosts/hosts.py",
    line 54, in _init_
    raise Exception('Address and Name(s) must be specified.')
    Exception: Address and Name(s) must be specified.
    If the hosts.yaml file is empty, it will crash with,
    File "/usr/local/lib/python2.7/dist-packages/dovetail/container.py",
    line 174, in create
    if hosts_yaml['hosts_info']:
    TypeError: 'NoneType' object has no attribute '_getitem_'
    JIRA: DOVETAIL-621
    Change-Id: I547928e514b3294c048379459c07df89879fbb03
    Signed-off-by: xudan <xudan16@huawei.com>
Jose Lausuch [Thu, 1 Mar 2018 14:19:49 +0000 (14:19 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Add functest-kubernetes project job"
  - Add functest-kubernetes project job
    It mainly inherits from functest project jobs.
    Change-Id: Ibcb8825ee3d98ca816a5036e0a66776e314f2ddb
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Fatih Degirmenci [Thu, 1 Mar 2018 13:47:22 +0000 (13:47 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - xci: Fix scenario name extraction
    Change-Id: Ifcea3d364b73d0d19d46aaf2bd2210ec6440f383
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Rodolfo Alonso Hernandez [Thu, 1 Mar 2018 13:23:54 +0000 (13:23 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Module to manage pip packages"
  - Module to manage pip packages
    This new module provides methods to manage Python PIP packages from
    a URL, from a local directory or from a build PIP package.
    The implemented commands are:
    - Install package.
    - Remove package.
    - List all installed packages in the system.
    JIRA: YARDSTICK-910
    Change-Id: I8f7d1b77c0c384b801cc6f5e67d8b45ce7c6bfdf
    Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Periyasamy Palanisamy [Tue, 12 Dec 2017 09:22:43 +0000 (10:22 +0100)]
 
Update git submodules
* Update docs/submodules/releng-xci from branch 'master'
  - os-odl-bgpvpn scenario support
    - Integrate XCI with outband od-odl-bgpvpn role
    - Install python-neutronclient on opnfv vm for the
      openstack bgpvpn specific cli commands
    Change-Id: Ib737349e2b2429bd366881f1e3657daf8c5c30ac
    Signed-off-by: Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>
Jose Lausuch [Thu, 1 Mar 2018 12:17:00 +0000 (12:17 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Build opnfv/xtesting via functest-xtesting"
  - Build opnfv/xtesting via functest-xtesting
    Change-Id: I63d79a2c84221736e08d4bea1a2cf8ac92c023d9
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Jose Lausuch [Thu, 1 Mar 2018 12:16:54 +0000 (12:16 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Pull the latest parent when building containers"
  - Pull the latest parent when building containers
    Change-Id: I534c14f4415c16661fb95966077621497c6f9cdc
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Periyasamy Palanisamy [Thu, 1 Mar 2018 09:32:23 +0000 (10:32 +0100)]
 
Update git submodules
* Update docs/submodules/sdnvpn from branch 'master'
  - update python modules shebang line for python intrepreter directive
    Change-Id: I1929a5b86a89a96fbf5c21b3bc419c9237034aba
    Signed-off-by: Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>
Periyasamy Palanisamy [Thu, 1 Mar 2018 08:40:48 +0000 (09:40 +0100)]
 
Update git submodules
* Update docs/submodules/sdnvpn from branch 'master'
  - fix for sdnvpn testsuite execution stops abruptly
    * updated the recommended shebang line for python intrepreter directive
    Change-Id: Icd3023f03c8b5524afcb5d600a9d03749496acea
    Signed-off-by: Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>
Linda Wang [Thu, 1 Mar 2018 04:58:07 +0000 (04:58 +0000)]
 
Update git submodules
* Update docs/submodules/functest from branch 'master'
  - Enable barometer run on compass
    Change-Id: Ic6f4f2a2d06dc70338da3bad53deca0a62a03232
    Signed-off-by: Linda Wang <wangwulin@huawei.com>
Fatih Degirmenci [Wed, 28 Feb 2018 18:48:25 +0000 (18:48 +0000)]
 
Update git submodules
* Update docs/submodules/releng-xci from branch 'master'
  - Be quiet while downloading images
    Change-Id: I8848d5bae22a408482d51a84636d230d25ca22be
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Fatih Degirmenci [Wed, 28 Feb 2018 11:37:52 +0000 (11:37 +0000)]
 
Update git submodules
* Update docs/submodules/releng-xci from branch 'master'
  - functest: Move run-functest.sh execution out of ansible
    Ansible throws out the log at the end of task execution which
    makes it hard to read. This change renames the role to prepare-functest
    and then takes the script execution out which will be executed by
    releng/jjb/xci/xci-run-functest.sh.
    Change-Id: Icf399ce4f04357814ed7109cd11113a9decddc50
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Ross Brattain [Thu, 1 Mar 2018 02:30:48 +0000 (18:30 -0800)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - scenario: add opnfv_os-odl-bgpvpn-noha_daily.yaml
    adding missing scenario for Apex.
    https://gerrit.opnfv.org/gerrit/#/c/50045/
    JIRA: YARDSTICK-998
    Change-Id: I211f567587a4864b403ce321fea007a3c0963136
    Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
wutianwei [Thu, 1 Mar 2018 07:16:13 +0000 (15:16 +0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - [compass4nfv] add nosdn-bar-noha scenario
    Change-Id: I5a513e143aff0775d066532af14165c4509aa82e
    Signed-off-by: wutianwei <wutianwei1@huawei.com>
Michael Polenchuk [Wed, 28 Feb 2018 14:10:17 +0000 (18:10 +0400)]
 
Update git submodules
* Update docs/submodules/fuel from branch 'master'
  - Clean up upstreamed patches
    Change-Id: Icee56da3720f0926e42390965581639f6a344b77
    Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
zhihui wu [Thu, 1 Mar 2018 06:39:03 +0000 (06:39 +0000)]
 
Update git submodules
* Update docs/submodules/qtip from branch 'master'
  - Merge "Auto Generated INFO.yaml file"
  - Auto Generated INFO.yaml file
    INFO.yaml meant to be machine readable.
    This file was auto generated from an ldap lookup
    and your projects INFO file.
    Meeting times are not currently filled out.
    please ammend this patchset to complete
    Going forward comitter promotions should be done
    against this file.
    PTLs:
    Must be merged for you to gain delete access on
    testresults.opnfv.org
    If project_lead: is missing (my script could not parse)
    please amend with same from commiters section eg:
    project_lead: &opnfv_$project_ptl
        name: 'Lead Name'
        email: 'lead email'
        id: 'lead lfid'
        company: 'lead company'
    Change-Id: I2ec5d1630c6ef871002e52ea10bc9b80d889f3a6
    Signed-off-by: agardner <agardner@linuxfoundation.org>
zhihui wu [Thu, 1 Mar 2018 05:20:00 +0000 (05:20 +0000)]
 
Update git submodules
* Update docs/submodules/qtip from branch 'master'
  - Merge "bugfix about sut"
  - bugfix about sut
    1. currently experimental job only runs against vnf
    2. bugfix: for qtip  Renaming a container with the
    same name as its current name
    3. update quickstart.sh usage
    Change-Id: I363fcfdb4199b3ddc408fdf3c54b11cdf62fa728
    Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
zhihui wu [Thu, 1 Mar 2018 01:49:28 +0000 (09:49 +0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - modify qtip job template
    The parameter 'SUT' is meaningless to storage job and experiment
    job.
    Change-Id: I40322962111896773821b8ef2f05e6f330d7da00
    Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
rexlee8776 [Sat, 27 Jan 2018 06:15:51 +0000 (06:15 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Bugfix: yardstick env grafana fails when access the server
    current timeout is 10 seconds, it would fail if grafana
    server start slow in some cases.
    JIRA: YARDSTICK-972
    Change-Id: I783206fdd1352e94ba7e498283f70b5a6834b6fa
    Signed-off-by: rexlee8776 <limingjiang@huawei.com>
zhihui wu [Thu, 1 Mar 2018 02:30:57 +0000 (02:30 +0000)]
 
Update git submodules
* Update docs/submodules/qtip from branch 'master'
  - Merge "support rfc2544 test using spirent virtual test center"
  - support rfc2544 test using spirent virtual test center
    1. support rfc2544 throughput and latency test with different packet size
    2. support vswitch performance test based on STCv affinity deployment
    Change-Id: I597de973ab95039dcbcd2da8473a3a5c87a10c14
    Signed-off-by: Qiang Dai <Qiang.Dai@spirent.com>
Jack Chan [Thu, 1 Mar 2018 02:20:38 +0000 (02:20 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "fix pep8 problem in env.py"
  - fix pep8 problem in env.py
    JIRA: YARDSTICK-1033
    Change-Id: Ia0f745b1a21845afc5c3b3ec58d7a79da56d6a6c
    Signed-off-by: rexlee8776 <limingjiang@huawei.com>
Xuan Jia [Thu, 1 Mar 2018 01:25:33 +0000 (01:25 +0000)]
 
Update git submodules
* Update docs/submodules/container4nfv from branch 'master'
  - Merge "Add new committer Trevor.Tao"
  - Add new committer Trevor.Tao
    Change-Id: I1318d5ce6d5f5002f8d63dfa40eb577fdf9d5f85
    Signed-off-by: Xuan Jia <jason.jiaxuan@gmail.com>
Yifei Xue [Thu, 1 Mar 2018 01:07:01 +0000 (01:07 +0000)]
 
Update git submodules
* Update docs/submodules/compass4nfv from branch 'master'
  - Merge "Update Stor4nfv plugin with nbp csi install"
  - Update Stor4nfv plugin with nbp csi install
    Change-Id: Ia32ea3c29b78f18aae258fa89b017e894b09301f
    Signed-off-by: ramamani yeleswarapu <ramamani.yeleswarapu@intel.com>
Gordon Kelly [Wed, 28 Feb 2018 21:27:51 +0000 (21:27 +0000)]
 
Update git submodules
* Update docs/submodules/barometer from branch 'master'
  - Merge "docker: add Dockerfile for barometer-snmp"
  - docker: add Dockerfile for barometer-snmp
    Change-Id: I0e53dc5c9889c3f503ab4459aae8143243959c17
    Signed-off-by: Gordon Kelly <gordon.kelly@intel.com>
Gordon Kelly [Wed, 28 Feb 2018 21:27:36 +0000 (21:27 +0000)]
 
Update git submodules
* Update docs/submodules/barometer from branch 'master'
  - Merge "ansible: add roles to launch collectd, influxdb and grafana containers"
  - ansible: add roles to launch collectd, influxdb and grafana containers
    Change-Id: I330172a2165e51a1557f084fd85fce12dfaad3a7
    Signed-off-by: Gordon Kelly <gordon.kelly@intel.com>
Ross Brattain [Tue, 13 Feb 2018 01:34:40 +0000 (17:34 -0800)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - NSB: Rename traffic_profile to trex_traffic_profile
    Make it more clear that traffic_profile is not a generic class.
    Eventually we can refactor a more generic traffic profile.
    Change-Id: I1bf44a8cafcdeb8d74efb9e85a34f6d7b526d036
    Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Fatih Degirmenci [Wed, 28 Feb 2018 19:18:49 +0000 (19:18 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - xci: Use distro specific ssh config while sshing to xci vms
    Change-Id: I9366639570315f879a662ca9e65a1894cd905a92
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Periyasamy Palanisamy [Wed, 28 Feb 2018 19:10:24 +0000 (20:10 +0100)]
 
Update git submodules
* Update docs/submodules/sdnvpn from branch 'master'
  - add user variables for quagga configuration
    As per the review https://git.opendaylight.org/gerrit/#/c/66195 in
    ansible-opendaylight role, adding required quagga specific
    user variables to configure OpenDaylight with BGPVPN functionality.
    Change-Id: I78e3389c4624fe92f34da13bde6a03d3f51c9675
    Signed-off-by: Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>
Fatih Degirmenci [Wed, 28 Feb 2018 19:00:05 +0000 (19:00 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - xci: Use distro specific ssh config while sshing to xci vms
    Change-Id: I231488cd9de58a9051bd289c3d584841e7335417
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Christian Trautman [Wed, 28 Feb 2018 17:34:38 +0000 (12:34 -0500)]
 
Update git submodules
* Update docs/submodules/vswitchperf from branch 'master'
  - Xena_Doc_mono_install_update: Update mono install pointer
    Mono Version 5.10 breaks mono execution of Xena2544.exe.
    Fix Xena install notes to point to a working version of Mono(5.8)
    when setting up to use Xena2544.exe.
    JIRA:VSPERF-561
    Change-Id: I3bbfaaeef55fc465cba943eb8b1a31abe2faba1f
    Signed-off-by: Christian Trautman <ctrautma@redhat.com>
Fatih Degirmenci [Wed, 28 Feb 2018 18:43:17 +0000 (18:43 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "xci: Use distro specific ssh config while sshing to xci vms"
  - xci: Use distro specific ssh config while sshing to xci vms
    Change-Id: I5e8b738d4293040b2792a926cd13708180590bbb
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Calin Gherghe [Wed, 28 Feb 2018 18:43:03 +0000 (18:43 +0000)]
 
Update git submodules
* Update docs/submodules/barometer from branch 'master'
  - Merge "Fix syntax error in baro_test/collectd.py:mcelog_install"
  - Fix syntax error in baro_test/collectd.py:mcelog_install
    The version of CentOS that's used no longer matches the version that
    is explicitly checked in collectd.py:mcelog_install.
    As a result the code on L637-L642[1] is now being called.
    This code was syntactically incorrect, however, was previously not being
    called, witht eh update to the version, it is now being executed and
    causing failures in deployment [2].
    [1] https://github.com/opnfv/barometer/blob/
c10400426df872be3236677dcb749c755f4a559c/baro_tests/collectd.py#L637-L642
    [2] https://build.opnfv.org/ci/job/functest-apex-baremetal-daily-master/809/consoleText
    Change-Id: I35274d4ede17510c3ae03c756eda7bc9f78b4e17
    Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Fatih Degirmenci [Wed, 28 Feb 2018 18:25:14 +0000 (18:25 +0000)]
 
Update git submodules
* Update docs/submodules/releng-xci from branch 'master'
  - Ensure the ssh config files are created per distro
    If 2 jobs for different distros start on the same host, the
    generated xci-vm-config files might be rewritten by both jobs
    causing trouble for the other. This change creates ssh config
    per distro to prevent potential issues.
    Change-Id: If6c0a86fd51bf3ba920e9206849ed1537894c7e1
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Emma Foley [Wed, 28 Feb 2018 18:01:24 +0000 (18:01 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Add Flags class to base.Context"
  - Add Flags class to base.Context
    This patch adds a Flags class to represent the flags passed to
    the context.
    Flags will contain a set of attributes (for example no_setup and no_teardown).
    Those attributes will modify the behaviour of the context.
    The attributes added initially are:
    * 'no_setup' (default: False)
    * 'no_teardown' (default: False)
    In future patches, they will be used by the context to:
    * Change the name of the context.
    * Skip the deploy() and undeploy() methods to keep the VNFs active after the
      testcases are run.
    JIRA: YARDSTICK-886
    Change-Id: I734b082aa101649eea8991304a8b753ae96aa9de
    Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
    Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Abhijit Sinha [Wed, 28 Feb 2018 17:49:00 +0000 (17:49 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Mock TRex STL libraries globally"
  - Mock TRex STL libraries globally
    TRex Python libraries are not going to be available during
    unit testing execution. Those modules calling TRex libraries
    should be mocked individually. This patch will remove the need
    of mocking those libraries per module.
    JIRA: YARDSTICK-1010
    Change-Id: I4aa11d43ecf32a3dad78f869541b4afea4ec1d28
    Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Ross Brattain [Wed, 28 Feb 2018 01:06:41 +0000 (17:06 -0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - [Yardstick] add apt-get autoremove to free up disk space
    yardstick builds are failing due to running out of disk space
    when too many kernels are left installed.
    Try apt-get autoremove to cleanup before updating
    [yardstick-verify-master] $ /bin/bash /tmp/jenkins4572301318127685434.sh
    Reading package lists...
    Building dependency tree...
    Reading state information...
    build-essential is already the newest version (12.1ubuntu2).
    python3-dev is already the newest version (3.5.1-3).
    python-dev is already the newest version (2.7.12-1~16.04).
    The following packages were automatically installed and are no longer required:
      linux-headers-4.4.0-101 linux-headers-4.4.0-101-generic
      linux-headers-4.4.0-103 linux-headers-4.4.0-103-generic
      linux-headers-4.4.0-104 linux-headers-4.4.0-104-generic
      linux-headers-4.4.0-108 linux-headers-4.4.0-108-generic
      linux-headers-4.4.0-109 linux-headers-4.4.0-109-generic
      linux-image-4.4.0-101-generic linux-image-4.4.0-103-generic
      linux-image-4.4.0-104-generic linux-image-4.4.0-108-generic
      linux-image-4.4.0-109-generic linux-image-extra-4.4.0-101-generic
      linux-image-extra-4.4.0-103-generic linux-image-extra-4.4.0-104-generic
      linux-image-extra-4.4.0-108-generic linux-image-extra-4.4.0-109-generic
    Use 'sudo apt autoremove' to remove them.
    0 upgraded, 0 newly installed, 0 to remove and 111 not upgraded.
    4 not fully installed or removed.
    After this operation, 0 B of additional disk space will be used.
    Setting up linux-image-extra-4.4.0-116-generic (4.4.0-116.140) ...
    run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.4.0-116-generic /boot/vmlinuz-4.4.0-116-generic
    run-parts: executing /etc/kernel/postinst.d/dkms 4.4.0-116-generic /boot/vmlinuz-4.4.0-116-generic
    run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.4.0-116-generic /boot/vmlinuz-4.4.0-116-generic
    update-initramfs: Generating /boot/initrd.img-4.4.0-116-generic
    W: mdadm: /etc/mdadm/mdadm.conf defines no arrays.
    gzip: stdout: No space left on device
    E: mkinitramfs failure cpio 141 gzip 1
    update-initramfs: failed for /boot/initrd.img-4.4.0-116-generic with 1.
    Change-Id: I79396162c5300c8cbaecc474473af81842f79db8
    Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Cedric Ollivier [Wed, 28 Feb 2018 15:53:01 +0000 (15:53 +0000)]
 
Update git submodules
* Update docs/submodules/functest from branch 'master'
  - Merge "Add guid in neutron resource names in juju_epc"
  - Add guid in neutron resource names in juju_epc
    JIRA: FUNCTEST-937
    Change-Id: Ia0912dfe2cdbecf4c169aecb6ba1b71774e0a02f
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Ross Brattain [Wed, 28 Feb 2018 15:52:57 +0000 (15:52 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Deprecate authentication variable OS_TENANT_NAME"
  - Deprecate authentication variable OS_TENANT_NAME
    OS_TENANT_NAME was deprecated as authentication variable in Keystone
    when moved from v2 to v3, in Icehouse (2014). Because this project doesn't
    support oldest versions, by default the only identification API version
    supported is v3.
    JIRA: YARDSTICK-902
    Change-Id: I273fb0151ba583f7c8a5a809e5e8864e92c27d31
    Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Georg Kunz [Tue, 27 Feb 2018 14:12:42 +0000 (15:12 +0100)]
 
Update git submodules
* Update docs/submodules/dovetail from branch 'master'
  - Removing old INFO file
    The INFO file has been replaced by the INFO.yaml file.
    Change-Id: I818697134cbb380a318237fdf593d7b6bf95ec04
    Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
Fatih Degirmenci [Wed, 28 Feb 2018 15:11:38 +0000 (15:11 +0000)]
 
Update git submodules
* Update docs/submodules/releng-xci from branch 'master'
  - Fix the proxy command and hostname for opnfv vm in ssh config
    Change-Id: Ic036a4f5ef8b24b88154f9314957339d3954839a
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Fatih Degirmenci [Wed, 28 Feb 2018 11:42:02 +0000 (11:42 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - xci: Move run-functest.sh execution out of ansible
    Change-Id: I40195f08012774c22178a27f146c402b33ecd8fc
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Georg Kunz [Tue, 27 Feb 2018 14:08:54 +0000 (15:08 +0100)]
 
Update git submodules
* Update docs/submodules/dovetail from branch 'master'
  - Removal of Wenjing Chu from the list of committers
    https://lists.opnfv.org/pipermail/opnfv-tech-discuss/2018-February/020497.html
    Change-Id: Ic2b536551d919e9b66f41ba00dd6dc8b71d93f7b
    Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
Cedric Ollivier [Wed, 28 Feb 2018 15:03:20 +0000 (15:03 +0000)]
 
Update git submodules
* Update docs/submodules/functest from branch 'master'
  - Merge "Integrate Patrole as a new testcase"
  - Integrate Patrole as a new testcase
    It's published in a new container because the current results don't
    allow gating.
    0.2 is selected to meet OpenStack Pike's requirements.
    Co-Authored-By: Rémi Le Trocquer <remi.letrocquer@orange.com>
    Change-Id: Iafcf8f66ee3531fc43136886095774885bfc3150
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Trevor Bramwell [Tue, 20 Feb 2018 17:58:38 +0000 (09:58 -0800)]
 
Update git submodules
* Update docs/submodules/dovetail from branch 'master'
  - Update CVP Docker Compose Configuration
    - Uses extra files config.env, vhost.env to hold environment variables
      for docker configuration.
    - Provides samples for these config that can be copied and modified to
      fit deployment requirements.
    - Updates the docker images to the newest releases.
    Change-Id: Ibe9b8597edfb38940297433708497c244200d0af
    Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
valentin boucher [Wed, 28 Feb 2018 14:49:11 +0000 (14:49 +0000)]
 
Update git submodules
* Update docs/submodules/functest from branch 'master'
  - Merge "Support different user/project domain values"
  - Support different user/project domain values
    For the moment, VNF works well only if
        OS_PROJECT_DOMAIN_NAME=Default
        OS_USER_DOMAIN_NAME=Default
    It's now possible to use domain != Default
    JIRA: FUNCTEST-935
    Change-Id: I779a93538662ff32906d91d7cf3b2c5c3e872765
    Signed-off-by: Valentin Boucher <valentin.boucher@kontron.com>
Aaron Smith [Wed, 28 Feb 2018 14:24:35 +0000 (14:24 +0000)]
 
Update git submodules
* Update docs/submodules/barometer from branch 'master'
  - Revert "Merge conflict"
    This reverts commit 
7f4ef61d68c3ed96759f3553b2793e0ce6a7e4a5.
    Change-Id: I0ac115a5e6dfbc53051ed7ee6ae0ceb72a8128af
    Signed-off-by: TsaLaGi <aasmith@redhat.com>
Justin chi [Wed, 28 Feb 2018 13:33:30 +0000 (13:33 +0000)]
 
Update git submodules
* Update docs/submodules/compass4nfv from branch 'master'
  - Merge "Auto Generated INFO.yaml file"
  - Auto Generated INFO.yaml file
    INFO.yaml meant to be machine readable.
    This file was auto generated from an ldap lookup
    and your projects INFO file.
    Meeting times are not currently filled out.
    please ammend this patchset to complete
    Going forward comitter promotions should be done
    against this file.
    PTLs:
    Must be merged for you to gain delete access on
    testresults.opnfv.org
    Change-Id: I3144202a10825e7907be09cc3c66a4227c34064c
    Signed-off-by: agardner <agardner@linuxfoundation.org>
Abhijit Sinha [Wed, 28 Feb 2018 13:22:40 +0000 (13:22 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Improve SampleVNF hugepages setup"
  - Improve SampleVNF hugepages setup
    The goal of this function is to:
    - Read the default hugepage size.
    - Set 16GB of hugepages.
    - Check if the status of the last action.
    According to [1], the default hugepage size could be read in
    "/proc/meminfo", always in kB. Then "/proc/sys/vm/nr_hugepages"
    could be used to set the number of default hugepages.
    [1] https://www.kernel.org/doc/Documentation/vm/hugetlbpage.txt
    JIRA: YARDSTICK-997
    Change-Id: I762d1b16294ba1c1c2feee56610819ac358c7410
    Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Abhijit Sinha [Wed, 28 Feb 2018 13:05:45 +0000 (13:05 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Addition of storage of extra counters for Grafana"
  - Addition of storage of extra counters for Grafana
    JIRA: YARDSTICK-1036
    This stores a number of extra counters in influxdb for Prox test cases.
    It also stores existing counters with a "succcess_" tag.
    Previously throughput where stored without success or failure indication.
    Also "Result_" counters are also stored.
    These can now be used by Grafana to graph output.
    Change-Id: Ie5636c14ecbab1b53a988bdfbd47ddd1fcdbd695
    Signed-off-by: Daniel Martin Buckley <daniel.m.buckley@intel.com>
Fatih Degirmenci [Wed, 28 Feb 2018 11:14:21 +0000 (11:14 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[armband] Add os-nosdn-ovs-ha scenario"
  - [armband] Add os-nosdn-ovs-ha scenario
    Added triggers for os-nosdn-ovs-ha scenario and reshuffled the other jobs
    To be merged after https://gerrit.opnfv.org/gerrit/#/c/52491/ is merged
    JIRA: ARMBAND-343
    Change-Id: I35614637f1f4aac459dbb3d49be4bdd33174ca92
    Signed-off-by: Cristina Pauna <cristina.pauna@enea.com>
Fatih Degirmenci [Wed, 28 Feb 2018 11:06:37 +0000 (11:06 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Add xtesting project job"
  - Add xtesting project job
    It mainly inherits from functest project jobs.
    xtesting is used everywhere except for project name which has to be
    functest-xtesting from the time being.
    Change-Id: I2c00c01b567b3c65b7acdec5c29b8c839d068366
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Fatih Degirmenci [Wed, 28 Feb 2018 10:57:52 +0000 (10:57 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[Functest] Run k8s tests on Joid"
  - [Functest] Run k8s tests on Joid
    Change-Id: I43ba42b2181b7f89a3f551a12eed4ab42d89cbee
    Signed-off-by: Linda Wang <wangwulin@huawei.com>
Fatih Degirmenci [Wed, 28 Feb 2018 10:57:09 +0000 (10:57 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Modify the daisy slavel-label in yardstick daily jobs"
  - Modify the daisy slavel-label in yardstick daily jobs
    Accoding to https://gerrit.opnfv.org/gerrit/#/c/52063/, the jobs of
    daisy master branch have been moved from zte-pod3 to daisy-baremetal.
    Change-Id: I6f2a93bd89f606c0506ef2bf60fe67f96ade0571
    Signed-off-by: Alex Yang <yangyang1@zte.com.cn>
Fatih Degirmenci [Wed, 28 Feb 2018 10:56:54 +0000 (10:56 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "change Dovetail CI jobs on Fuel"
  - change Dovetail CI jobs on Fuel
    1. run test suite default on Fuel on Tuesday for HA scenario
    2. run test suite proposed_tests on Fuel on Monday, Wednesday and Friday
       for HA scenario
    JIRA: DOVETAIL-613
    Change-Id: I67ef5d7dddfee01817b933ae3eeccf704924f9b0
    Signed-off-by: xudan <xudan16@huawei.com>
Emma Foley [Wed, 28 Feb 2018 10:51:13 +0000 (10:51 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Yardstick real-time influxdb KPI reporting regressions"
  - Yardstick real-time influxdb KPI reporting regressions
    JIRA: YARDSTICK-989
    We used to have real-time influxdb reporting of test KPIs. The user
    could monitor using grafana and see the real-time output.
    The record format was changed to now only report KPIs at the end of the
    test.
    This is a problem for test cases which run for a long duration,  we need
    to wait until the end of the test execution to get any results from
    influxdb. If the test fails in between or doesn't exit cleanly for some
    reason, we are left with no results stored in influxdb which gives the
    user no information.
    This is also a regression from the previous behaviour.
    Change-Id: I0f476dff9162a359f0286fb421f2e9c4befaa5cc
    Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
Markos Chandras [Tue, 27 Feb 2018 16:13:04 +0000 (16:13 +0000)]
 
Update git submodules
* Update docs/submodules/releng-xci from branch 'master'
  - xci: script: start-new-vm: Switch to using 'curl' instead of 'wget'
    curl supports the 'retry' argument to handle all sorts of connection
    problems so we can use it to retry if we encounter a broken connection.
    Change-Id: I3c8afd2be36ee36c5477f05495704bbbee5b9757
    Signed-off-by: Markos Chandras <mchandras@suse.de>
Serena Feng [Wed, 28 Feb 2018 09:27:02 +0000 (09:27 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "[QTIP] Add a new variable "SUT" in project"
  - [QTIP] Add a new variable "SUT" in project
    QTIP test runs against with host and vnf.
    Change-Id: I863cb48356f6ba74043b51ebfae8e5ff2f241abc
    Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
wutianwei [Wed, 28 Feb 2018 06:36:27 +0000 (14:36 +0800)]
 
Update git submodules
* Update docs/submodules/compass4nfv from branch 'master'
  - Add judgement for k8s stor4nfv
    Don't run storage roles when scenario isn't stor4nfv
    Change-Id: Ia8e65c90b58533427e74bad225aaa962d2583934
    Signed-off-by: wutianwei <wutianwei1@huawei.com>
zhihui wu [Tue, 27 Feb 2018 08:03:07 +0000 (16:03 +0800)]
 
Update git submodules
* Update docs/submodules/qtip from branch 'master'
  - Delete the hardcoding parameter "sut_type"
    SUT already can be passed from CLI.
    Change-Id: I3ff68ebf94ce25dfc0a42964cf1aafc8e58da4b6
    Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
Linda Wang [Wed, 28 Feb 2018 01:29:06 +0000 (01:29 +0000)]
 
Update git submodules
* Update docs/submodules/joid from branch 'master'
  - Remove space in KUBE_MASTER_IP
    Change-Id: I779da2fd1f450abd7757484e7dc46e3bf5a6e816
    Signed-off-by: Linda Wang <wangwulin@huawei.com>
Yifei Xue [Wed, 28 Feb 2018 02:57:50 +0000 (02:57 +0000)]
 
Update git submodules
* Update docs/submodules/compass4nfv from branch 'master'
  - Merge "modify the intel-pod17 k8s dha file"
  - modify the intel-pod17 k8s dha file
    Change-Id: I06e53449a68d8b4291e5c9c4682f42410f28ef68
    Signed-off-by: wutianwei <wutianwei1@huawei.com>
Ross Brattain [Wed, 28 Feb 2018 01:52:36 +0000 (01:52 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "add egress security rules"
  - add egress security rules
    JIRA: YARDSTICK-1034
    Change-Id: I613b8bff669fceeb0c7c59dec2b6f1ab22b09247
    Signed-off-by: mting <dianfeng.du@ericsson.com>
Yifei Xue [Wed, 28 Feb 2018 01:14:39 +0000 (01:14 +0000)]
 
Update git submodules
* Update docs/submodules/compass4nfv from branch 'master'
  - Merge "Update Barometer plugin - follow-up patch"
  - Update Barometer plugin - follow-up patch
    Modifies/updates the following:
    - Adds Hostname and enables all plugins in default_plugins
    - Adds rrdtool conf template
    - Adds a check to enable ExtraStats in virt conf
      only when rdt is not available.
    Change-Id: I7af7d86fadcaa0ccf3ba2b67d58c37e37ba84a73
    Signed-off-by: ramamani yeleswarapu <ramamani.yeleswarapu@intel.com>
mortenhillbom [Wed, 28 Feb 2018 00:30:08 +0000 (16:30 -0800)]
 
Update git submodules
* Update docs/submodules/nfvbench from branch 'master'
  - NFVBENCH-71 Send runlogdate as date instead of 0
    Change-Id: Ibb0845038ed9694309b04e360e71f6ff6f1d5a25
    Signed-off-by: mortenhillbom <mortenhillbom@gmail.com>
spisarski [Tue, 27 Feb 2018 20:27:47 +0000 (13:27 -0700)]
 
Update git submodules
* Update docs/submodules/snaps from branch 'master'
  - Fixed subnet gateway support to allow for disabling the gateway.
    JIRA: SNAPS-276
    Change-Id: Ia676b91ee881097ca7502fb4b9f5c64961de2214
    Signed-off-by: spisarski <s.pisarski@cablelabs.com>
xudan [Sat, 24 Feb 2018 09:35:08 +0000 (04:35 -0500)]
 
Update git submodules
* Update docs/submodules/dovetail from branch 'master'
  - Adapt Bottlenecks Euphrates framework
    Bottlenecks stress test needs some adaptions about Bottlenecks
    Euphrates release.
    JIRA: DOVETAIL-587
    Change-Id: Ia447143c8f08924ac1b190ee0173f39e462c5dfa
    Signed-off-by: xudan <xudan16@huawei.com>
Abhijit Sinha [Tue, 27 Feb 2018 16:59:54 +0000 (16:59 +0000)]
 
Update git submodules
* Update docs/submodules/yardstick from branch 'master'
  - Merge "Addition of NSB Prox developer guide."
  - Addition of NSB Prox developer guide.
    JIRA: YARDSTICK-840
    This provides a developer guide to enable the reader to add NSB
    PROX tests based on existing PROX functionality.
    This allows the user to configure, run and debug NSB Prox tests
    for Baremetal and Openstack (both 2 and 4 ports)
    Change-Id: I2cb9eb6064e501dd9abe0d2cc4ed8ce4b369f174
    Signed-off-by: Daniel Martin Buckley <daniel.m.buckley@intel.com>
Cédric Ollivier [Mon, 26 Feb 2018 18:13:41 +0000 (19:13 +0100)]
 
Update git submodules
* Update docs/submodules/sfc from branch 'master'
  - Stop relying on internal Functest utils
    It switches from functest_utils.get_functest_config() to
    config.CONF(). download_url is now hosted in sfc as it's unused by
    Functest.
    ft_utils.get_parameter_from_yaml() will be considered as part of
    Functest framework (then it must be well covered and documented).
    Change-Id: I3014d90dba53422020ae85a2815c5bf8c0dcf34c
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
TsaLaGi [Tue, 27 Feb 2018 14:17:38 +0000 (09:17 -0500)]
 
Update git submodules
* Update docs/submodules/barometer from branch 'master'
  - Merge conflict
    Revert "Merge "ansible: add ansible scripts to configure .conf file on collectd nodes""
    This reverts commit 
7effd9e1e84dd7fa2a189a0815b5be1c0fcb165a, reversing
    changes made to 
b26034d05aa81f624e9bcee2c8e82a1cacfe44c4.
    Change-Id: I6f77b4432bbe0de29db3e099263e461e3043b22e
    Signed-off-by: TsaLaGi <aasmith@redhat.com>
yayogev [Tue, 27 Feb 2018 15:00:05 +0000 (17:00 +0200)]
 
Update git submodules
* Update docs/submodules/calipso from branch 'master'
  - US3541 merge various fixes to OPNFV branch
    timestamp of last commit tt was merged: 26-Jan-2018 16:25.
    Change-Id: I7b0bf7885d7d0badb81c794a52c480b905d78459
    Signed-off-by: yayogev <yaronyogev@gmail.com>
Markos Chandras [Tue, 27 Feb 2018 12:10:17 +0000 (12:10 +0000)]
 
Update git submodules
* Update docs/submodules/releng-xci from branch 'master'
  - xci: scripts: start-new-vm: Mask the pgrep exit code
    pgrep will exit with non-zero exit code if it didn't find a matching
    process. This breaks the script since we set 'errexit' so we need to
    mask it by simply piping it to a 'cat' command.
    Change-Id: I80dcf06b597a769242bd59d628bbd8e09f0f199e
    Signed-off-by: Markos Chandras <mchandras@suse.de>
Aric Gardner [Tue, 27 Feb 2018 13:49:16 +0000 (13:49 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "Set functest repo as variable"
  - Set functest repo as variable
    Related to: https://gerrit.opnfv.org/gerrit/#/c/52513/
    JIRA: FUNCTEST-917
    Change-Id: Ifdcc3c893134f3835ea12b134e55f9094d51c581
    Signed-off-by: Delia Popescu <delia.popescu@enea.com>
Alexandru Avadanii [Tue, 27 Feb 2018 13:42:47 +0000 (13:42 +0000)]
 
Update git submodules
* Update docs/submodules/pharos from branch 'master'
  - Merge "[fuel] Improved IP handling on config template"
  - [fuel] Improved IP handling on config template
    -New IP addressing.
    Starts on lower available addresses for
    better compatibilty for small networks.
    IPs assigned secuentially and independently
    on each network.
    -Switched to advanced IP generation filters.
    Defined integers are no longer end of the IP address part
    but host order on the IP network.
    -Dynamic generation of compute nodes
    JIRA:FUEL-335
    Change-Id: Ie95b83af64cb21ba27749d5f5d1506bfbc9ddf15
    Signed-off-by: Guillermo Herrero <guillermo.herrero@enea.com>
Fatih Degirmenci [Tue, 27 Feb 2018 11:57:01 +0000 (11:57 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "xci: Set the scenario to os-nosdn-nofeature if the verify is skipped"
  - xci: Set the scenario to os-nosdn-nofeature if the verify is skipped
    The envInject complains due to nonexistent scenario.properties so we
    set the scenario to os-nosdn-nofeature to suppress the failures since
    there is nothing to fail.
    Change-Id: Ic259ec53e77cf8afe62638a1b447c8e58863b419
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Yifei Xue [Tue, 27 Feb 2018 11:38:50 +0000 (11:38 +0000)]
 
Update git submodules
* Update docs/submodules/compass4nfv from branch 'master'
  - Merge "Enable CSI plugin for Stor4nfv scenario"
  - Enable CSI plugin for Stor4nfv scenario
    JIRA: -
    Add some configurations to enable CSI plugin in k8s v1.9 which
    is used by Stor4nfv scenario.
    Change-Id: I78e0b39f31ff666eace50921c691107154dcb249
    Signed-off-by: Yifei Xue <xueyifei@huawei.com>
Markos Chandras [Tue, 27 Feb 2018 10:34:17 +0000 (10:34 +0000)]
 
Update git submodules
* Update docs/submodules/releng-xci from branch 'master'
  - Merge "xci: scripts: vm: start-new-vm.sh: Re-arrange debug messages"
  - xci: scripts: vm: start-new-vm.sh: Re-arrange debug messages
    This also improves (again!) the check for parallel packages managers
    to print some useful messages for debugging.
    Change-Id: I7756db80aa3ed42cd3ef37293f7116b5a9c150c1
    Signed-off-by: Markos Chandras <mchandras@suse.de>
Cédric Ollivier [Mon, 26 Feb 2018 17:01:01 +0000 (18:01 +0100)]
 
Update git submodules
* Update docs/submodules/functest from branch 'master'
  - Remove obsolete Functest utils
    Only 3 functions are kept as part of our framework:
      - execute_command_raise()
      - execute_command()
      - get_parameter_from_yaml()
    Change-Id: I966a1d6122391dae85aa3c77813ad2f1698ceb45
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Fatih Degirmenci [Tue, 27 Feb 2018 10:03:54 +0000 (10:03 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "xci: Enable functest healthcheck"
  - xci: Enable functest healthcheck
    Change-Id: I261bfafefcd1fb5dcfead20697759e46d3556b46
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Fatih Degirmenci [Tue, 27 Feb 2018 10:02:00 +0000 (10:02 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - Merge "xci: Correct the gerrit project name for sdnvpn"
  - xci: Correct the gerrit project name for sdnvpn
    Change-Id: Ied1014546f6bd4d80896f29f86374a2865f95dca
    Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
wutianwei [Tue, 27 Feb 2018 08:25:00 +0000 (16:25 +0800)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - [compass4nfv]trigger k8s on baremetal pod
    1. add the trigger k8s on baremetal
    2. modify the default DEPLOY_SCENARIO
    Change-Id: I9d216c12905b36b4fbba7d9214fcf6fccf1d79c4
    Signed-off-by: wutianwei <wutianwei1@huawei.com>
Periyasamy Palanisamy [Tue, 27 Feb 2018 08:47:11 +0000 (08:47 +0000)]
 
Update git submodules
* Update docs/submodules/sdnvpn from branch 'master'
  - Merge "Update the way of running tempest"
  - Update the way of running tempest
    Use 'tempest run' instead of 'run_tempest.sh', which has
    been removed by tempest 16.0.0
    Also, 'tempest.py' has been renamed to 'run_tempest.py', to
    avoid package importing conflict
    Change-Id: I61e802e0381d1f33281610e98d05813c9b96faf9
    Signed-off-by: Linda Wang <wangwulin@huawei.com>
Periyasamy Palanisamy [Tue, 27 Feb 2018 08:46:49 +0000 (08:46 +0000)]
 
Update git submodules
* Update docs/submodules/sdnvpn from branch 'master'
  - Merge "Stop relying on internal Functest utils"
  - Stop relying on internal Functest utils
    It switches from functest_utils.get_functest_config() to
    config.CONF(). download_url is now hosted in sfc as it's unused by
    Functest.
    The next functions will be considered as part of Functest framework
    (then it must be well covered and documented):
      - ft_utils.execute_command_raise()
      - ft_utils.execute_command()
      - ft_utils.get_parameter_from_yaml()
    Change-Id: I076c6ced430df8387de8eaeac6f3a94d93201b19
    Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
rexlee8776 [Tue, 27 Feb 2018 07:37:31 +0000 (07:37 +0000)]
 
Update git submodules
* Update docs/submodules/releng from branch 'master'
  - [Yardstick] set yardstick ci debug switch on
    Yardsitck CI default print INFO level message,
    this patch turn the DEBUG on for Fraser debug.
    Change-Id: I3d4436e6610648ab64439ba410f4fe07a54d6dc0
    Signed-off-by: rexlee8776 <limingjiang@huawei.com>
wutianwei [Tue, 27 Feb 2018 07:45:22 +0000 (15:45 +0800)]
 
Update git submodules
* Update docs/submodules/compass4nfv from branch 'master'
  - Add dha files
    Add the huawei-pod1 and huawei-pod2 k8s dha files
    Change-Id: Id191c6d18508f15d9032a2cb3d0f563c059a7d53
    Signed-off-by: wutianwei <wutianwei1@huawei.com>
Yifei Xue [Tue, 27 Feb 2018 07:20:53 +0000 (07:20 +0000)]
 
Update git submodules
* Update docs/submodules/compass4nfv from branch 'master'
  - Merge "set the kubernetes variable"
  - set the kubernetes variable
    According to DEPLOY_SCENARIO, we set different nfvi and distro.
    Change-Id: I3082923fc7d4a1309c1de83f988f831d67c10d64
    Signed-off-by: wutianwei <wutianwei1@huawei.com>