opnfvdocs.git
6 years agoUpdate git submodules
Tim Rozet [Wed, 13 Sep 2017 21:35:38 +0000 (17:35 -0400)]
Update git submodules

* Update docs/submodules/apex from branch 'master'
  - Fix broken build dependency

    libguestfs-tools is failing to install because libvirt-client is
    installed and there is a package conflict.  Removing libvirt-client from
    image before installing libguestfs-tools.

    NSH build is failing in overcloud because the CentOS repos updated with
    newer kernel source and headers, and we are still using older kernel.
    This patch adds the old kernel source and headers.  Upgrading to new
    kernel causes NSH OVS to fail when compiling.

    Change-Id: Ifd500ad138116cfecafb2268ccb580bd44d5efd5
Signed-off-by: Tim Rozet <trozet@redhat.com>
6 years agoUpdate git submodules
Markos Chandras [Thu, 14 Sep 2017 19:07:02 +0000 (19:07 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "xci: xci-deploy.sh: Do not 'tee' ssh output"
  - xci: xci-deploy.sh: Do not 'tee' ssh output

    Using 'tee' to capture 'ssh' command output randomly breaks with the
    following error:

    tee: standard output: Resource temporarily unavailable

    Lets just store the log on the host and copy it back in the end.

    Change-Id: I41edac138b8642e8765d5c1e5974b375b5b3203b
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Trevor Bramwell [Thu, 14 Sep 2017 19:00:27 +0000 (19:00 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "opnfv-docker-arm: storperf: Fix docker repo name"
  - opnfv-docker-arm: storperf: Fix docker repo name

    Storperf job definitions define an override for docker_repo_name,
    so use that in setting the default for DOCKER_REPO_NAME param.

    Change-Id: I772088437cd2d6d383ec2f0f44a202b01d95ff59
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Mark Beierl [Thu, 14 Sep 2017 18:55:27 +0000 (18:55 +0000)]
Update git submodules

* Update docs/submodules/storperf from branch 'master'
  - Merge "Add Multi Arch to Docker"
  - Add Multi Arch to Docker

    Adds multi arch support to the launching of the
    containers.

    Change-Id: Iee89cfad3dc455fe8fdd7861d73fadbe314c2c1e
    JIRA: STORPERF-220
Signed-off-by: mbeierl <mark.beierl@dell.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Thu, 14 Sep 2017 17:27:06 +0000 (17:27 +0000)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - Merge "Tune up mysql options"
  - Tune up mysql options

    Change-Id: Ib4d787c45434243d0dc29d517a73224cf4f9d1c1
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
6 years agoUpdate git submodules
Michael Polenchuk [Thu, 14 Sep 2017 10:21:03 +0000 (14:21 +0400)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - [baremetal] Switch from 1Gb to 2Mb hugepages

    Employ 2Mb hugepages for physical computes as well
    since functest suite uses less than 1Gb memory flavors.

    Change-Id: I7e96dd73df7d9e7274247b4faba15ee9bd362e40
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
6 years agoUpdate git submodules
Aric Gardner [Thu, 14 Sep 2017 16:54:50 +0000 (16:54 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "yardstick-cleanup.sh: try to fix docker rmi failure"
  - yardstick-cleanup.sh: try to fix docker rmi failure

    apex builds seem to be failing to remove the yardstick
    containers

    https://build.opnfv.org/ci/job/yardstick-apex-baremetal-daily-master/400/console

    [yardstick-apex-baremetal-daily-master] $ /bin/bash /tmp/hudson8974425724638109512.sh
    Cleaning up docker containers/images...
    Docker images to remove:
    REPOSITORY                   TAG                 IMAGE ID            CREATED             SIZE
    opnfv/yardstick              latest              5b83d8e60fb7        6 days ago          1.84GB
    Removing docker image opnfv/yardstick:latest...
    Error response from daemon: No such image: opnfv/yardstick:latest
    Build step 'Execute shell' marked build as failure

    For some reason we can't remove the yardstick container.

    Try instead to remove based on ID

    Replace grep | awk with just awk.

    Also fixed shellcheck warnings:

    In jjb/yardstick/yardstick-cleanup.sh line 6:
    if [[ -n ${dangling_images} ]]; then
             ^-- SC2128: Expanding an array without an index only gives the first element.

    In jjb/yardstick/yardstick-cleanup.sh line 10:
            containers=$(docker ps -a | grep $image_id | awk '{print $1}')
                                             ^-- SC2086: Double quote to prevent globbing and word splitting.

    In jjb/yardstick/yardstick-cleanup.sh line 12:
                docker rm -f $containers >${redirect}
                             ^-- SC2086: Double quote to prevent globbing and word splitting.

    In jjb/yardstick/yardstick-cleanup.sh line 14:
            docker rmi $image_id >${redirect}
                       ^-- SC2086: Double quote to prevent globbing and word splitting.

    In jjb/yardstick/yardstick-cleanup.sh line 20:
    if [[ ! -z $(docker ps -a | grep opnfv/yardstick) ]]; then
            ^-- SC2143: Use ! grep -q instead of comparing output with [ -z .. ].

    In jjb/yardstick/yardstick-cleanup.sh line 27:
    if [[ ! -z $(docker images | grep opnfv/yardstick) ]]; then
            ^-- SC2143: Use ! grep -q instead of comparing output with [ -z .. ].

    In jjb/yardstick/yardstick-cleanup.sh line 33:
            docker rmi opnfv/yardstick:$tag >$redirect
                                       ^-- SC2086: Double quote to prevent globbing and word splitting.

    Change-Id: I6545ac7f568161e5620e31d487faf70fa21da075
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Thu, 14 Sep 2017 16:09:35 +0000 (18:09 +0200)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - opnfv-docker.sh: Fix unbound ARCH_TAG

    Jenkins does not set ARCH_TAG to an empty string; instead it does
    not set that variable at all when the input is empty.
    Fix this by providing a default empty string in the script.

    Change-Id: Iec4c38068b1ab3e8dd124f49b36759eedb084f4a
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
ahothan [Thu, 14 Sep 2017 15:56:06 +0000 (08:56 -0700)]
Update git submodules

* Update docs/submodules/nfvbench from branch 'master'
  - Add tag to docker build

    Change-Id: I1f2d3c163776867aa7f9f58db9292506cd383066
Signed-off-by: ahothan <ahothan@cisco.com>
6 years agoUpdate git submodules
Mark Beierl [Thu, 14 Sep 2017 16:17:20 +0000 (16:17 +0000)]
Update git submodules

* Update docs/submodules/storperf from branch 'master'
  - Merge "Documentation for storperf-reporting module JIRA: STORPERF-141"
  - Documentation for storperf-reporting module
    JIRA: STORPERF-141

    Change-Id: I3a228737093d7ea3b645789fb2c7569ed4e932d5
Signed-off-by: saksham115 <saksham.agrawal@research.iiit.ac.in>
6 years agoUpdate git submodules
Narinder Gupta [Thu, 14 Sep 2017 16:08:55 +0000 (11:08 -0500)]
Update git submodules

* Update docs/submodules/joid from branch 'master'
  - modfied heat to use defined encruption key as know issue in heat.

    Change-Id: I40d5682f019072eac594ea58cef5d4a96aa70da7
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
6 years agoUpdate git submodules
Morgan Richomme [Thu, 14 Sep 2017 15:15:22 +0000 (15:15 +0000)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Merge "Select $OPENSTACK_TAG instead of stable/ocata"
  - Select $OPENSTACK_TAG instead of stable/ocata

    It modifies functest and functest-core containers.

    Change-Id: I505baf460412e73d3bf4563b13edd849c2f02fac
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Manuel Buil [Tue, 12 Sep 2017 09:01:51 +0000 (11:01 +0200)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  - Added support for OSA installer

    Change-Id: I3a34daaca258cd2ce511aee51819cf438110e403
Signed-off-by: Manuel Buil <mbuil@suse.com>
6 years agoUpdate git submodules
Sharada Shiddibhavi [Wed, 13 Sep 2017 14:36:55 +0000 (14:36 +0000)]
Update git submodules

* Update docs/submodules/barometer from branch 'master'
  - Modified CSV verification, added Gnocchi and AODH testcases

    This patch contains changes in CSV directory path and added
    testcases for Gnocchi and AODH plugins

    Change-Id: Icff77546be0b747279522c18e7b3aaa32df2f7c4
Signed-off-by: Sharada Shiddibhavi <sharada.shiddibhavi@intel.com>
6 years agoUpdate git submodules
Morgan Richomme [Thu, 14 Sep 2017 13:01:08 +0000 (13:01 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "[fuel] Handle os cacert for alpine as well"
  - [fuel] Handle os cacert for alpine as well

    Change-Id: Ie7e8228dc4316a70c8cd800415108180148f5f31
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
6 years agoUpdate git submodules
Julien [Thu, 14 Sep 2017 12:30:17 +0000 (20:30 +0800)]
Update git submodules

* Update docs/submodules/pharos from branch 'master'
  - minor changes

    missing comments in https://gerrit.opnfv.org/gerrit/#/c/41711/

    Change-Id: I718a2c5b06a38700f739fe23e36f535562c2a90d
Signed-off-by: Julien <zhang.jun3g@zte.com.cn>
6 years agoUpdate git submodules
julien zhang [Thu, 14 Sep 2017 12:27:12 +0000 (12:27 +0000)]
Update git submodules

* Update docs/submodules/pharos from branch 'master'
  - Merge "Update requirements from ARM community"
  - Update requirements from ARM community

    Change-Id: Id221ade872bb7f38f406a2fb8ebc8651260b22bf
Signed-off-by: Julien <zhang.jun3g@zte.com.cn>
6 years agoUpdate git submodules
julien zhang [Thu, 14 Sep 2017 12:26:58 +0000 (12:26 +0000)]
Update git submodules

* Update docs/submodules/pharos from branch 'master'
  - Merge "Update contents in E release"
  - Update contents in E release

    correct some information like: links and descriptions
    delete unuseful information

    JIRA: PHAROS-311

    Change-Id: I1fceaa13fbff540bcd3f314f4653c7cc8c485091
Signed-off-by: Julien <zhang.jun3g@zte.com.cn>
6 years agoUpdate git submodules
Julien [Mon, 11 Sep 2017 16:02:33 +0000 (00:02 +0800)]
Update git submodules

* Update docs/submodules/pharos from branch 'master'
  - Add PDF to document

    Change-Id: Ib3d9f89b4556d91c2d7207eb109e18eafe6dfbd6
Signed-off-by: Julien <zhang.jun3g@zte.com.cn>
6 years agoUpdate git submodules
xiaodong shang [Thu, 14 Sep 2017 11:19:04 +0000 (11:19 +0000)]
Update git submodules

* Update docs/submodules/parser from branch 'master'
  - Merge "Fix functest_run script for role of heat_stack_owner"
  - Fix functest_run script for role of heat_stack_owner

    When update openstack to ocata and run test in functest, the following
    error happends:
      ERROR: Missing required credential: roles ['heat_stack_owner']
    It need to add role heat_stack_owner to parser user

    JIRA: PARSER-156

    Change-Id: Ie0417c53c7dbd28efe8d9c4eb3fda23de8e1f841
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
6 years agoUpdate git submodules
xiaodong shang [Thu, 14 Sep 2017 11:12:36 +0000 (11:12 +0000)]
Update git submodules

* Update docs/submodules/parser from branch 'master'
  - Merge "Disable syslog in heat-translator for functest integration"
  - Disable syslog in heat-translator for functest integration

    Since run in container with the base image of alpine, in which no
    service and rsyslog installed, it need to delete syslog in
    heat-translator:
    reference patch: https://gerrit.opnfv.org/gerrit/#/c/41115/

    JIRA: PARSER-149

    Change-Id: Iddd8c5fa54556fff2670a9439653de7e97b8aa18
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
6 years agoUpdate git submodules
Jun Li [Thu, 14 Sep 2017 11:01:14 +0000 (11:01 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Don't test dovetail with os-onos-nofeature-ha scenario"
  - Don't test dovetail with os-onos-nofeature-ha scenario

    Compass will not release os-onos-nofeature-ha scenario in its E release.
    Dovetail will not test against this scenario anymore.

    JIRA: DOVETAIL-502

    Change-Id: Ifeefc0fdbe610808d349be971f597ad10ea5ceca
Signed-off-by: xudan <xudan16@huawei.com>
6 years agoUpdate git submodules
chigang [Thu, 14 Sep 2017 02:59:23 +0000 (10:59 +0800)]
Update git submodules

* Update docs/submodules/compass4nfv from branch 'master'
  - Enable DPDK scenarios in Jenkins

    Add network configuration files and scenario files
    to fix running error in Jenkins
    https://build.opnfv.org/ci/job/compass-deploy-baremetal-daily-master/2888/console

    Change-Id: Ie0e930e143d520c553eac41e56cf4b2504374e30
Signed-off-by: chigang <chigang@huawei.com>
6 years agoUpdate git submodules
tomsou [Thu, 14 Sep 2017 08:41:43 +0000 (11:41 +0300)]
Update git submodules

* Update docs/submodules/sdnvpn from branch 'master'
  - Fix testcase_10 module path

     Update config file with the full path for testcase 10

    Change-Id: I81ec9eaecc2c36f07f4608cdd65db6f64b43c4f9
Signed-off-by: tomsou <soth@intracom-telecom.com>
6 years agoUpdate git submodules
Cedric Ollivier [Thu, 14 Sep 2017 07:52:03 +0000 (07:52 +0000)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Merge "Optimize Alpine Dockerfiles"
  - Optimize Alpine Dockerfiles

    It mainly splits vnfs runtime and build dependencies to save space at
    the end.

    Change-Id: I8307fa416066cc8c50b96862de8bafd2c47a2ace
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Jun Li [Thu, 14 Sep 2017 06:38:29 +0000 (06:38 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Add danube scenario "os-odl_l2-bgpvpn-ha" in fuel pod zte-pod1"
  - Add danube scenario "os-odl_l2-bgpvpn-ha" in fuel pod zte-pod1

    JIRA: DOVETAIL-500

    Change-Id: Iab4af16ecb31b183a375d03a9fc6066e00ecaec1
Signed-off-by: xudan <xudan16@huawei.com>
6 years agoUpdate git submodules
Jun Li [Thu, 14 Sep 2017 06:38:21 +0000 (06:38 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Bugfix: Add job-template to jobs"
  - Bugfix: Add job-template to jobs

    The last patch to add apex danube jobs on huawei-pod4 forget to add the
    job-template to the jobs list.

    Change-Id: I671faa2068bab517adc59ad8597e9c05330d528f
Signed-off-by: xudan <xudan16@huawei.com>
6 years agoUpdate git submodules
Yang Yu [Thu, 14 Sep 2017 03:33:14 +0000 (11:33 +0800)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - bug-fix: fix privilege error for removing workspace

    JIRA: BOTTLENECK-196

    Details refer to: https://build.opnfv.org/ci/view/bottlenecks/
    job/bottlenecks-compass-posca_stress_ping-virtual-daily-master/
    41/consoleFull

    Change-Id: Ia973bab723e2b52a34f4332a5dbcff7c342720d7
Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
6 years agoUpdate git submodules
Yang Yu [Thu, 14 Sep 2017 02:38:29 +0000 (10:38 +0800)]
Update git submodules

* Update docs/submodules/bottlenecks from branch 'master'
  - bug-fix: make CLI available by adding docker operations

    JIRA: BOTTLENECK-197

    offline test is executed which validated this patch

    Change-Id: Ib98e64781697839a7c1896d4089279d017d738ad
Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
6 years agoUpdate git submodules
Cedric Ollivier [Thu, 14 Sep 2017 04:48:00 +0000 (04:48 +0000)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Merge "Allow reading log file with byte offset"
  - Allow reading log file with byte offset

    Change-Id: I8cd6acef66d798fa43e20ca9d885dcbaa99a5b42
Signed-off-by: Linda Wang <wangwulin@huawei.com>
6 years agoUpdate git submodules
Justin chi [Thu, 14 Sep 2017 02:40:03 +0000 (02:40 +0000)]
Update git submodules

* Update docs/submodules/compass4nfv from branch 'master'
  - Merge "Update the image tags to euphrates"
  - Update the image tags to euphrates

    JIRA: -

    Currently the latest tag is used in building tarball.
    As OPNFV Euphrates will be released soon, we change the
    tags of some docker images to euphrates.

    Change-Id: Ic7a746f3a3338cf7f5cacd2f932816b3776e7de6
Signed-off-by: Yifei Xue <xueyifei@huawei.com>
6 years agoUpdate git submodules
Jun Li [Thu, 14 Sep 2017 02:31:23 +0000 (02:31 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Bug-fix: Cleanup Workspace after Testing"
  - Bug-fix: Cleanup Workspace after Testing

    JIRA: BOTTLENECK-196

    RT

    Change-Id: If98c2cf3636f5f65006f7418851e8d2a63a712fa
Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
6 years agoUpdate git submodules
fuqiao [Thu, 14 Sep 2017 02:08:10 +0000 (10:08 +0800)]
Update git submodules

* Update docs/submodules/availability from branch 'master'
  - Modify title and structure to fit release doc

    Modify title and structure to fit release doc

    JIRA: HA 30

    Change-Id: I01ca0dadac011224eeaaf137f13760aaf7b82c23
Signed-off-by: fuqiao@chinamobile.com
6 years agoUpdate git submodules
Qiao Fu [Thu, 14 Sep 2017 01:42:27 +0000 (01:42 +0000)]
Update git submodules

* Update docs/submodules/availability from branch 'master'
  - Merge "Updating HA GUEST API OVERVIEW DOCUMENT based on Bertrand Souville's comments. - adding standard Doctor / Vitrage Fault Mgmt Architecture Diagram, and - refering to Doctor SB API"
  - Updating HA GUEST API OVERVIEW DOCUMENT based on Bertrand Souville's comments.
    - adding standard Doctor / Vitrage Fault Mgmt Architecture Diagram, and
    - refering to Doctor SB API

    -------------

    Updating HA GUEST API OVERVIEW Proposal after review with OPNFV DOCTOR Team.

    Minutes from meeting, that were addressed as part of this update are below.

    - VM Heartbeating & Health Checking
      * libvirt watchdog and its integration / use with OpenStack
         > https://blueprints.launchpad.net/nova/+spec/libvirt-watchdog
         > https://wiki.openstack.org/wiki/LibvirtWatchdog#Notifications
         > Need to review behaviour of this capability as compared to the
           proposed VM Heartbeating/Health-checking
         > i believe there is a bit of overlap
           but believe that VM Heartbeating / Health-checking provides a
           more complete solution
         > i'll update document with a NOTE on comparing the proposal with
           the libvirt watchdog
      * Update the architecture diagram to be consistent with the most current
        DOCTOR Architecture Diagrams
         > e.g. Vitrage & Congress are not necessrily deployed at same time
         > use DOCTOR terminology where applicable, e.g. "inspector modules"
         > OPNFV DOCTOR includes patches/components of AODH, NOVA, NEUTRON
           ... not just Vitrage and Congress, as shown in diagram
           - although also had comment that should remove OPNFV DOCTOR outline
             from diagram as OPNFV DOCTOR is a reuirement specification and
             not an implementation
         > indicate (possibly just in text below diagram) that the "Guest
           Heartbeat / Health-check Server' on Controller Node is possibly not
           required, as the Vitrage data source interface can be remotely
           reached by "Guest Heartbeat / Health-check Compute" on the Compute
           Node
      * In text, provide a little more detail on content of actual messaging
        e.g. PDUs and rough message content
      * OVERALL
         > believe there was a general agreement in the way that VM Heartbeating
           & Health-checking was integrated / inter-worked with OPNFV DOCTOR's
           Vitrage / Congress and overall OPNFV fault reporting architecture
         > key feedback was to understand and highlight the additional value of
           the VM Heartbeating & Health-checking functionality over the existing
           libvirt watchdog integration into OpenStack.

    - Server Group Messaging
      * suggestion that Rabbit MQ pub/sub messaging could be an alternative for
        routing of messages
         > this is an implementation detail though
      * general discussions on "HA use cases" for how this messaging could be
        leveraged
         > e.g. split-brain avoidance, faster peer VM state change notifications
      * OVERALL
         > agreement that the Server Group Messaging Architecture did NOT conflict
           with Doctor Architecture
         > need further review with OPNFV MANO Team as to how they would position
           this functionality
           e.g.
               - position it as an alternative for various HA use cases ?
               - versus
               - mandating that this service group messaging be used for specific
                 HA user cases

    Change-Id: Icd54bbf8889017cfe3f617656ddf483cbb171e63
Signed-off-by: gwaines <greg.waines@windriver.com>
6 years agoUpdate git submodules
Jun Li [Thu, 14 Sep 2017 01:29:35 +0000 (01:29 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Apex, Dovetail: run proposed_test against Apex on huawei_pod4"
  - Apex, Dovetail: run proposed_test against Apex on huawei_pod4

    Run Dovetail proposed_test job against Apex Danube daily on
    huawei_pod4.

    Change-Id: I14f4f86caa2b1fb2802b5ea154edec47784209cc
Signed-off-by: Peng Liu <pliu@redhat.com>
6 years agoUpdate git submodules
chigang [Thu, 10 Aug 2017 02:40:11 +0000 (10:40 +0800)]
Update git submodules

* Update docs/submodules/compass4nfv from branch 'master'
  - Add dpdk plugin

    JIRA: COMPASS-550

    add OVS-DPDK plugin, there are two roles in this plugin.
        1. ins_dpdk is for dpdk installation and hugepages setting.
        2. ins_ovs is for openvswitch installation.
    add dpdk scenario networking configuration example called "network_cfg_dpdk.yaml"

    Change-Id: Ifd8c1aadc218753f99bc26bb530e7cf9962ad8e3
Signed-off-by: chigang <chigang@huawei.com>
6 years agoUpdate git submodules
Zhijiang Hu [Thu, 14 Sep 2017 00:14:27 +0000 (00:14 +0000)]
Update git submodules

* Update docs/submodules/daisy from branch 'master'
  - Merge "Add the pytest file test_deploy.py"
  - Add the pytest file test_deploy.py

    1.add the pytest file test_deploy.py
    2.fix the tmpfile clearup issue.

    Change-Id: I3a7e0f9199f1bf518b332fd3e9884c8f084575ae
Signed-off-by: zhongjun <zhong.jun@zte.com.cn>
6 years agoUpdate git submodules
Kerim Gokarslan [Wed, 13 Sep 2017 22:57:10 +0000 (15:57 -0700)]
Update git submodules

* Update docs/submodules/nfvbench from branch 'master'
  - NFVBENCH-24 Send runlogdate as date

    Change-Id: I2791d222c213081b356b64b7dae886ace034b14a
Signed-off-by: Kerim Gokarslan <kgokarsl@cisco.com>
6 years agoUpdate git submodules
Maciej Skrocki [Wed, 13 Sep 2017 22:40:22 +0000 (15:40 -0700)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Removed special networking from yardstick container when started by nsb_setup.

    Change-Id: Ief1cfd7c018948a9125549400bb5bf0e5c20d730
Signed-off-by: Maciej Skrocki <maciej.skrocki@intel.com>
6 years agoUpdate git submodules
Bin Hu [Wed, 13 Sep 2017 21:27:31 +0000 (14:27 -0700)]
Update git submodules

* Update docs/submodules/ipv6 from branch 'master'
  - Update of INFO File

    For update of committer list

    Change-Id: I168d6d90a0bbf0e7a5d58335f609bb978298e301
Signed-off-by: Bin Hu <bh526r@att.com>
6 years agoUpdate git submodules
Bin Hu [Wed, 13 Sep 2017 21:10:39 +0000 (14:10 -0700)]
Update git submodules

* Update docs/submodules/ipv6 from branch 'master'
  - Fix scenario name of ODL L3

    From "odl_l3" to "odl"

    Change-Id: I29b233b3cf5b6b9b15ca7ee1d680b97a6a505ae1
Signed-off-by: Bin Hu <bh526r@att.com>
6 years agoUpdate git submodules
Bin Hu [Mon, 11 Sep 2017 23:21:33 +0000 (16:21 -0700)]
Update git submodules

* Update docs/submodules/ipv6 from branch 'master'
  - Preliminary documentation for Euphrates Release

    Change-Id: I1a61ac77a38530a00daf109c9a428d2c0ba96c51
Signed-off-by: Bin Hu <bh526r@att.com>
6 years agoUpdate git submodules
Feng Pan [Wed, 13 Sep 2017 18:25:34 +0000 (18:25 +0000)]
Update git submodules

* Update docs/submodules/apex from branch 'master'
  - Merge "Migrates clean to python"
  - Migrates clean to python

    ci/clean.sh will be removed in a future patch after releng is updated to
    use python.

    JIRA: APEX-509
    JIRA: APEX-319

    Change-Id: If890db2fc5a31833ad28ec6f04589e25457bd380
Signed-off-by: Tim Rozet <trozet@redhat.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 13 Sep 2017 17:08:01 +0000 (17:08 +0000)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - Merge "[virtual] Setup nfs for nova instances"
  - [virtual] Setup nfs for nova instances

    Configure nfs shared storage for nova instances
    to support live migration feature.

    Change-Id: I777d5725e45d03325507d3ecc8dd59a28cbc188f
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 13 Sep 2017 17:07:06 +0000 (17:07 +0000)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - Merge "[virtual] Add haproxy entries for opendaylight"
  - [virtual] Add haproxy entries for opendaylight

    Change-Id: Id0303d217dbe71e4b04834e545feae0660172b23
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
6 years agoUpdate git submodules
Michael Polenchuk [Wed, 13 Sep 2017 10:39:22 +0000 (14:39 +0400)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - [baremetal] Setup glusterfs for nova instances

    Live-migration feature requires shared storage on compute nodes,
    so configure glusterfs volume for nova instances.

    Change-Id: Id6b9b5aad89f5b4aefbef71e4ba7247a441873b0
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
6 years agoUpdate git submodules
mbeierl [Tue, 12 Sep 2017 18:25:57 +0000 (14:25 -0400)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Optional Architecture Specific Push

    Enables optional argument to specify the architecture to use
    when building and pushing the image.  If project defines it,
    the arch is added to the docker version like so: arch-version.
    This matches the tag convention used by multiarch/alpine.

    Change-Id: I699c2aba05c55291b5f8c48bcc1daacceae6154b
    JIRA: STORPERF-210
Signed-off-by: mbeierl <mark.beierl@dell.com>
6 years agoUpdate git submodules
Markos Chandras [Wed, 13 Sep 2017 16:52:32 +0000 (16:52 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "xci: SHA bump as of September 5th 2017"
  - xci: SHA bump as of September 5th 2017

    The SHA bump is required for SUSE support.

    Change-Id: If21e7658ee2ee967c458c08d186b5c1d07b5d93c
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Aric Gardner [Wed, 13 Sep 2017 16:52:28 +0000 (16:52 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "ericsson-pod1 slave defaults: Custom INSTALLER_IP"
  - ericsson-pod1 slave defaults: Custom INSTALLER_IP

    ericsson-pod1's jump host already has a static IP assigned to its
    pxebr, which collides with the mcpcontrol network default settings
    used by Fuel@OPNFV.
    Instead of changing the existing network configuration on the jump
    host to prevent CIDR collision, use a slightly different CIDR,
    which is derived from INSTALLER_IP.

    JIRA: FUEL-285

    Change-Id: Ibea10b3f6528f3b34bc4ab12c3f9131932f6dc84
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Markos Chandras [Wed, 13 Sep 2017 16:52:26 +0000 (16:52 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "xci: scripts: Update wording for comments"
  - xci: scripts: Update wording for comments

    Update wording so it matches the upstream one and minimize the
    noise on a-r-r updates.

    Change-Id: I216c1ee1ac4f24ab2c5a382bfe5e2aacf324024a
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Aric Gardner [Wed, 13 Sep 2017 16:52:01 +0000 (16:52 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "yardstick: AArch64: Pull from arch-specific repo"
  - yardstick: AArch64: Pull from arch-specific repo

    AArch64 Docker images for Yardstick reside in
    "opnfv/yardstick_aarch64" repo.

    Change-Id: Ic2621aabd535bbfcd274650ee590eebed4806efa
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Markos Chandras [Wed, 13 Sep 2017 16:19:47 +0000 (16:19 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "xci: Make it possible to skip deployment and healthcheck"
  - xci: Make it possible to skip deployment and healthcheck

    This change adds possibility for patch submitters to skip the full
    xci-verify if the change doesn't impact the deployment.

    Since the patch will be reviewed by others, reviewers can always
    ask the submitter to run it through full xci-verify by changing
    the topic and posting reverify or recheck as comment to gerrit
    change.

    The keyword to put in topic branch is skip-verify.

    Change-Id: Ib7be71cadd1e1ddff181936ae77753fbfbf3a1d3
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
6 years agoUpdate git submodules
Manuel Buil [Wed, 13 Sep 2017 12:41:48 +0000 (14:41 +0200)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Add packages in docker alpine containers

    To run our SFC tests we require openssh and sshpass to be installed in
    the container

    Change-Id: I40b3d740855d48939f9411697abbd3bbbb70370f
Signed-off-by: Manuel Buil <mbuil@suse.com>
6 years agoUpdate git submodules
spisarski [Wed, 13 Sep 2017 14:20:34 +0000 (08:20 -0600)]
Update git submodules

* Update docs/submodules/snaps from branch 'master'
  - Disabled test meant for the F release.

    Change-Id: I889fa6a384bc7468c732180261c0eebe815b7cfa
Signed-off-by: spisarski <s.pisarski@cablelabs.com>
6 years agoUpdate git submodules
Morgan Richomme [Wed, 13 Sep 2017 14:42:50 +0000 (14:42 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Add reporting for Functest Alpine in Releng"
  - Add reporting for Functest Alpine in Releng

    Change-Id: I1e72cb5b7ce9441900a239bb593d89275fe7b675
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
6 years agoUpdate git submodules
Cedric Ollivier [Wed, 13 Sep 2017 14:02:44 +0000 (14:02 +0000)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Merge "Add Functest restapi container"
  - Add Functest restapi container

    It allows running all testcases via Functest REST API [1]. 

    [1] https://wiki.opnfv.org/display/functest/Running+test+cases+via+new+Functest+REST+API

    Change-Id: Iaa69b7367653398582b876df1362f72c787c6b7b
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Cedric Ollivier [Wed, 13 Sep 2017 14:02:19 +0000 (14:02 +0000)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Merge "Remove thirdparty-requirements.txt in smoke"
  - Remove thirdparty-requirements.txt in smoke

    As refstack must be installed via local dir (to sync requirements),
    it's useless to list it again in a requirements file.

    Change-Id: I9099fff185694fd41cf02e1265b1d4ab7659d7f2
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Cedric Ollivier [Wed, 13 Sep 2017 14:02:09 +0000 (14:02 +0000)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Merge "Add Docker automated build hooks for Parser"
  - Add Docker automated build hooks for Parser

    Change-Id: Ie42058fba915e3fbe9098ff14b31768723e8e24e
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Brady Johnson [Wed, 13 Sep 2017 13:36:13 +0000 (13:36 +0000)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  - Merge "Increase timeout time"
  - Increase timeout time

    My VMs take around 80 seconds to be able to respond to pings. The current
    timeout is in 50 seconds. I will increase it to 150 to have a buffer

    Change-Id: Ie684e76799210e3d7239e35df2d4bdd7af507669
Signed-off-by: Manuel Buil <mbuil@suse.com>
6 years agoUpdate git submodules
Manuel Buil [Wed, 13 Sep 2017 10:35:42 +0000 (12:35 +0200)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  - Add network_src_port_id to vnffgd

    ODL requires that parameter to be present in order to classify

    Change-Id: Idb8e0578a9c4c22cd35e4615755333b67d4fe658
Signed-off-by: Manuel Buil <mbuil@suse.com>
6 years agoUpdate git submodules
Linda Wang [Wed, 30 Aug 2017 09:00:27 +0000 (09:00 +0000)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Disable urllib3 warnings

    1. When running in compass OSA, lots of SubjectAltNameWarnings are
       shown in console, so just disable the warnings here.
       See https://github.com/shazow/urllib3/issues/497 for details
    2. Redirect warnings issued by the warnings module to the logging system
       via logging.captureWarnings(True)
    3. But urllib3 warning is still there for two cmds about rally/tempest.

    Change-Id: Ic22cf8e2babc10c9d55a7ed46b841312a4e430a7
Signed-off-by: Linda Wang <wangwulin@huawei.com>
6 years agoUpdate git submodules
Juraj Linkeš [Wed, 13 Sep 2017 08:12:17 +0000 (08:12 +0000)]
Update git submodules

* Update docs/submodules/fds from branch 'master'
  - Merge "Updated resource cleanup and post apex for 1710"
  - Updated resource cleanup and post apex for 1710

    Change-Id: Idb9b1d101acdc54425fb1daf4442e466ceef3f0e
Signed-off-by: juraj.linkes <jlinkes@cisco.com>
6 years agoUpdate git submodules
Deepak S [Tue, 12 Sep 2017 08:00:19 +0000 (01:00 -0700)]
Update git submodules

* Update docs/submodules/samplevnf from branch 'master'
  - Enabling Prox to be compatible with Titanium Cloud

    Change-Id: I65e8b2d1cea2a1edfa738671e460b6a0170d3363
Signed-off-by: Deepak S <deepak.s@linux.intel.com>
6 years agoUpdate git submodules
julien zhang [Wed, 13 Sep 2017 01:22:30 +0000 (01:22 +0000)]
Update git submodules

* Update docs/submodules/parser from branch 'master'
  - Merge "Fix substitution mapping assigned value to nodetemplate"
  - Fix substitution mapping assigned value to nodetemplate

    Currently the assignment mapped template value to nodetemplate is error,
    and additionally debug_mode is not transfered to nested template. So the
    patch will fix them.

    JIRA: PARSER-155

    Change-Id: I8c5801b00ae56b9ba2eb92a6f14357c2f5328718
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
6 years agoUpdate git submodules
Narinder Gupta [Wed, 13 Sep 2017 00:22:56 +0000 (19:22 -0500)]
Update git submodules

* Update docs/submodules/joid from branch 'master'
  - modified as docker does not installed so use python.

    Change-Id: I9ecffb002ec5886bf7c4b7e139a299310698a920
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
6 years agoUpdate git submodules
Serena Feng [Wed, 13 Sep 2017 01:03:22 +0000 (01:03 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Disable mcp ci job on zte-pod1"
  - Disable mcp ci job on zte-pod1

    Avoid the conflicts between fuel deployment and mcp deployment,
    disable mcp ci job on zte-pod1 temporarily.

    Change-Id: I9161ae0b5eb2d6a4631e6bb1c7bb22ed340d09af
Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
6 years agoUpdate git submodules
Kerim Gokarslan [Tue, 12 Sep 2017 19:42:26 +0000 (12:42 -0700)]
Update git submodules

* Update docs/submodules/nfvbench from branch 'master'
  - NFVBENCH-22 Create nfvbench log folder in Dockerfile

    Change-Id: Id6762597d65c2a1365b25ebfb07cd583e8149597
Signed-off-by: Kerim Gokarslan <kgokarsl@cisco.com>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 22:20:38 +0000 (22:20 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/escalator"
  - Fix Yamllint Violations for jjb/escalator

    JIRA: RELENG-254

    Change-Id: I2a4ba4a8a60aaf6f0a9859726abfd8f1b73df82f
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 22:17:07 +0000 (22:17 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/vswitchperf"
  - Fix Yamllint Violations for jjb/vswitchperf

    JIRA: RELENG-254

    Change-Id: I9713573cb5321d68beb703f26e662b889341f0ac
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 22:16:22 +0000 (22:16 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/container4nfv"
  - Fix Yamllint Violations for jjb/container4nfv

    JIRA: RELENG-254

    Change-Id: I3c64608d9a185617769a7f9f1488e5cd3fd5cd16
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Narinder Gupta [Tue, 12 Sep 2017 22:04:28 +0000 (17:04 -0500)]
Update git submodules

* Update docs/submodules/joid from branch 'master'
  - AS stable/17.08 release so switching to 17.08 stable now.

    Change-Id: I7d27dfb372814591970e29425c1de2080d19b641
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
6 years agoUpdate git submodules
Fatih Degirmenci [Tue, 12 Sep 2017 20:54:04 +0000 (14:54 -0600)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - xci: Drop parameter ANSIBLE_VERBOSITY from jobs

    Instead of setting the verbosity in jobs, they can be set in scripts
    to move the setting to where it makes most sense and possibly easing
    the work for ansible version adaptations by fixing it in one place.

    Change-Id: Ie155b666cf5300a3f57687b3214a65d5d79aeee1
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:40:21 +0000 (20:40 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "barometer: fixed typo in jjb"
  - barometer: fixed typo in jjb

    Change-Id: Iaec493601d26516012ec62b0daf79d03768c1cad
Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:35:55 +0000 (20:35 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/ves"
  - Fix Yamllint Violations for jjb/ves

    JIRA: RELENG-254

    Change-Id: I3e9889a145dc74201a503502fff7d69e844addaf
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:35:43 +0000 (20:35 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/qtip"
  - Fix Yamllint Violations for jjb/qtip

    JIRA: RELENG-254

    Change-Id: I07318b8077d46e5d716f0ac42453ab999e5c76d9
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:34:51 +0000 (20:34 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/promise"
  - Fix Yamllint Violations for jjb/promise

    JIRA: RELENG-254

    Change-Id: Ia936e1ab5840b7f7acbe874bb46ca906369a4121
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:34:41 +0000 (20:34 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/prediction"
  - Fix Yamllint Violations for jjb/prediction

    JIRA: RELENG-254

    Change-Id: Ic58a32e9b60afc09c7f8271cac7ed84e7c7b58ca
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:34:31 +0000 (20:34 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/pharos"
  - Fix Yamllint Violations for jjb/pharos

    JIRA: RELENG-254

    Change-Id: I52fb864bf84bff75a0f5cf9bae522602be2c2d49
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:34:20 +0000 (20:34 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/parser"
  - Fix Yamllint Violations for jjb/parser

    JIRA: RELENG-254

    Change-Id: I7a338c71e24a468a00a2d1cb21b2a6600b698306
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:34:10 +0000 (20:34 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/copper"
  - Fix Yamllint Violations for jjb/copper

    JIRA: RELENG-254

    Change-Id: I48ab499f4f5b70657fa67c9f44ef430fdd1a9e9d
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Shrenik [Tue, 12 Sep 2017 20:17:19 +0000 (01:47 +0530)]
Update git submodules

* Update docs/submodules/storperf from branch 'master'
  - Adds graphite and swaggerui containers to installation.rst

    swaggerui and graphite containers were missing.
    JIRA: STORPERF-209

    Change-Id: I4697d1641a0accc13daa60637e4195064a42a83c
Signed-off-by: Shrenik <shrenik.jain@research.iiit.ac.in>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:29:11 +0000 (20:29 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/ovsnfv"
  - Fix Yamllint Violations for jjb/ovsnfv

    JIRA: RELENG-254

    Change-Id: Ie85c86395669f0d96956f5b24d4f1283ba95a170
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:28:59 +0000 (20:28 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/onosfw"
  - Fix Yamllint Violations for jjb/onosfw

    JIRA: RELENG-254

    Change-Id: I89b7a0498399602c488c0045e7cc4368b5f19f14
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:28:04 +0000 (20:28 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/netready"
  - Fix Yamllint Violations for jjb/netready

    JIRA: RELENG-254

    Change-Id: I348cd559349b73ce9bba44b66c843a1b72ea4ff9
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:27:51 +0000 (20:27 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/moon"
  - Fix Yamllint Violations for jjb/moon

    JIRA: RELENG-254

    Change-Id: If7e19dfdaf3b9d5df79b4d22fd13578d64481cb1
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:27:36 +0000 (20:27 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/models"
  - Fix Yamllint Violations for jjb/models

    JIRA: RELENG-254

    Change-Id: I88147ba688b427a2dba8fed1e634b9c4466a2a88
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:27:19 +0000 (20:27 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/kvmfornfv"
  - Fix Yamllint Violations for jjb/kvmfornfv

    JIRA: RELENG-254

    Change-Id: Ibab4edf47116bd89d8a65eedec9961d1a42eebb1
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:27:00 +0000 (20:27 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/availability"
  - Fix Yamllint Violations for jjb/availability

    JIRA: RELENG-254

    Change-Id: I830f05e7b005195580aa1d24e977c132c6278f86
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:26:51 +0000 (20:26 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/ipv6"
  - Fix Yamllint Violations for jjb/ipv6

    JIRA: RELENG-254

    Change-Id: I9b6017724ae1566a8651e187d372506ee6bb0373
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:26:40 +0000 (20:26 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/domino"
  - Fix Yamllint Violations for jjb/domino

    JIRA: RELENG-254

    Change-Id: Ia9246b4fee30ea350b57563241fb83c4f03a3b55
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 20:26:30 +0000 (20:26 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Fix Yamllint Violations for jjb/conductor"
  - Fix Yamllint Violations for jjb/conductor

    JIRA: RELENG-254

    Change-Id: I446c7820204757b46866fbff180a83ff2b757c3b
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Shrenik [Tue, 12 Sep 2017 19:19:05 +0000 (00:49 +0530)]
Update git submodules

* Update docs/submodules/storperf from branch 'master'
  - Adds StorPerf developer guide

    The wiki for Development Environment has been converted in .rst format.
    JIRA: STORPERF-201

    Change-Id: I4e2bc792a8704e4f933f0ea61533c1bf5955c64d
Signed-off-by: Shrenik <shrenik.jain@research.iiit.ac.in>
6 years agoUpdate git submodules
Kerim Gokarslan [Tue, 12 Sep 2017 19:09:44 +0000 (12:09 -0700)]
Update git submodules

* Update docs/submodules/nfvbench from branch 'master'
  - NFVBENCH-23 Do not send runlogdate for logs about server status

    Change-Id: I51cc104a9ade1481e075f200327b967c517857f4
Signed-off-by: Kerim Gokarslan <kgokarsl@cisco.com>
6 years agoUpdate git submodules
Aric Gardner [Tue, 12 Sep 2017 19:29:35 +0000 (19:29 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "slave-params: Add fuel/armband bridge information"
  - slave-params: Add fuel/armband bridge information

    This information was previously fetched from securedlab, via a
    POD-specific "local_env" file which was sourced at deploy time.

    Since this information can't be parametrized via PDF, nor is it
    sensitive enough to hide in securedlab, move it to releng.

    Change-Id: Ia4e244ceb534c49b1ecda5be798470a81c68b494
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Kerim Gokarslan [Tue, 12 Sep 2017 19:02:24 +0000 (12:02 -0700)]
Update git submodules

* Update docs/submodules/nfvbench from branch 'master'
  - NFVBENCH-19 Put interpreter name to entrypoint script
    NFVBENCH-21 Pass server configurations as environmental variables in entrypoint script

    Change-Id: I0a6f7de7a194fa141e961f8e97d8cf70fa39c4ef
Signed-off-by: Kerim Gokarslan <kgokarsl@cisco.com>
6 years agoUpdate git submodules
Ross Brattain [Tue, 12 Sep 2017 18:22:30 +0000 (18:22 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "Added line parser to INI parser"
  - Added line parser to INI parser

    Line parser handles comments, keys and values
    and makes exceptions.

    Change-Id: I5cd3612ffd8cb08b14051bd0ef4b757c310f77bd
Signed-off-by: Edward MacGillivray <edward.s.macgillivray@intel.com>
6 years agoUpdate git submodules
Narinder Gupta [Tue, 12 Sep 2017 18:04:44 +0000 (13:04 -0500)]
Update git submodules

* Update docs/submodules/joid from branch 'master'
  - make sure MAAS gets deployed first before calling juju command.

    Change-Id: Ib9e122416d45625883ff1967e9089ec2ab4812a2
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Tue, 12 Sep 2017 17:55:00 +0000 (19:55 +0200)]
Update git submodules

* Update docs/submodules/armband from branch 'master'
  - u/fuel: Bump & rebase for runtime parametrization

    While at it, move opnfv user required reclass parameters to newly
    added <all-mcp-ocata-common/opnfv/init.yml>.

    Change-Id: Ic614e9e9db4e3ae74b8c08bc34be5fc732c2aae4
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Stuart Mackie [Tue, 12 Sep 2017 16:52:42 +0000 (09:52 -0700)]
Update git submodules

* Update docs/submodules/joid from branch 'master'
  - Add --router

    Change-Id: Iaa5ac00b3a8cbc239f178cbfca2268fea7def235
Signed-off-by: Stuart Mackie <wsmackie@juniper.net>
6 years agoUpdate git submodules
Kerim Gokarslan [Thu, 7 Sep 2017 19:07:57 +0000 (12:07 -0700)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Added nfvbench docker configuration

    Change-Id: I90ff32b7047b768552f5d5e1c78d12e0bf4ea1a2
Signed-off-by: Kerim Gokarslan <kgokarsl@cisco.com>