Update git submodules
authorKubi <jean.gaoliang@huawei.com>
Sun, 23 Apr 2017 10:41:27 +0000 (10:41 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Sun, 23 Apr 2017 10:41:27 +0000 (10:41 +0000)
commitb28e51a80f77cbe7c4eeec172729c2d883c6a47d
tree59f8936d1aef648a832d3dec6b7051503b9efe69
parentb7e39acb5c793f45a9eb0658bd57845420dfe1c9
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "Add SRIOV support"
  - Add SRIOV support

    A generic provider network solution is introduced. To identify whether a network specified in the test case is a provider network new attributes are introduced in the test case network section:

    networks:
      test-net:
        cidr: '192.168.1.0/24'
        provider: "sriov"
        physical_network: 'physnet1'

    If the "provider" attribute is present, the network is an existing provider network. If the value is "sriov", binding:vnic_type=direct is added to the interface in the heat deployment template. In orchestrator/heat.py, the interface creating functions are given a new parameter that tells if the network in use is a provider network. The benchmark/contexts/model.py is changed to store the value of the provider attribute from the test case and function calls to port creation is updated with the provider parameter. The same change is made in contexts/heat.py as well. Also calls for creating a new tenant network is replaced for creating a new provider network if the provider attribute is present.

    Update-1: Change test_model.py
    Update-2: Per comment, change comment style to """"
    Update-3: Change test_heat.py
    Update-4: Add unit test cases to pass coverage test
    Update-5: Add SRIOV provider network example in opnfv_yardstick_tc008.yaml
    Update-6: Per comment, remove empty line in orchestrator/test_heat.py
    Update-7: Per comment, change comment lines in orchestrator/test_heat.py
    Update-8: Add more unit test cases to pass coverage test
    Update-9: Change to create SRIOV provider network on the fly so as to support co-current test runs
    Update-10: Per comment, init physical_network to 'physnet1'

    Change-Id: I76004c4fcc9bffcfd8ed021fd647e0cecb346ef4
    JIRA: YARDSTICK-612
Signed-off-by: Jing Zhang <jing.c.zhang@nokia.com>
docs/submodules/yardstick