opnfvdocs.git
6 years agoUpdate git submodules
Fatih Degirmenci [Fri, 9 Mar 2018 11:04:00 +0000 (12:04 +0100)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - xci: Set the installer and move scenario extraction into functions

    The scenarios named os-* are deployed by osa and the ones
    named k8-* are deployed by kubespray. This change determines
    the installer to use by looking into the scenario name.

    The installers are currently hardcoded within xci-set-scenario.sh
    script and this needs to be fixed for other installers when they
    onboard to xci.

    Apart from setting the installer, extraction of generic and external
    scenarios are moved into corresponding functions.

    Change-Id: I19882bcd2a1260765e601ecbe517551c60401d74
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoUpdate git submodules
valentin boucher [Mon, 12 Mar 2018 12:22:56 +0000 (12:22 +0000)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Merge "Add patrole in opnfv/functest-restapi"
  - Add patrole in opnfv/functest-restapi

    Change-Id: I983898c27477986d9a5610e1df966fd00a8bc785
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Abhijit Sinha [Mon, 12 Mar 2018 12:01:49 +0000 (12:01 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "Add context name to Dummy test"
  - Add context name to Dummy test

    Since I1447fb5ed447691eaeb0a97f928c0b3333799d07, the context name is
    a mandatory parameter for every context.

    JIRA: YARDSTICK-886

    Change-Id: I0ccb7e9fabdf6bc2890d2e4763f53baee06c87b2
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
6 years agoUpdate git submodules
Emma Foley [Mon, 12 Mar 2018 11:55:18 +0000 (11:55 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "Reduce the log level if TRex client is no connected"
  - Reduce the log level if TRex client is no connected

    If the TRex client is no connected, the testcase will write an exception
    log that will be thrown to the CLI. There is no need to show the
    traceback in the CLI in this case.

    The log level is reduced to "error".

    JIRA: YARDSTICK-1059

    Change-Id: I22a52cedd6479f4cf692ba16a8415f7b8f574ab1
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
6 years agoUpdate git submodules
Rodolfo Alonso Hernandez [Mon, 12 Mar 2018 09:53:40 +0000 (09:53 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "assertTrue(mock.called) -> mock.assert_called"
  - assertTrue(mock.called) -> mock.assert_called

    When checking whether a mocked method has been called,
    mock.assert_called or mock.assert_called_once should be
    used, and not unittest.assertTrue(mock.called)

    This change does this update.
    It can be verified with:
      grep -irn "self.assertTrue(.*called)" --exclude-dir=.tox
    And the replacement was done with:
      sed -i 's/self.assertTrue(\(.*\).called)/\1.assert_called_once()/g' <list_of_files>

    Change-Id: I4f26e0c736bf33e0b2413c8e8c33dbdb91f090e2
    JIRA: YARDSTICK-865
Signed-off-by: Emma Foley <emma.l.foley@intel.com>
6 years agoUpdate git submodules
Markos Chandras [Mon, 12 Mar 2018 09:52:30 +0000 (09:52 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "jjb: xci: Drop the VM cleanup step from the functest jobs"
  - jjb: xci: Drop the VM cleanup step from the functest jobs

    We do the VM cleanup as part of the postbuild process so we do
    not need to have it in the functest jobs anymore.

    Change-Id: I64e4b58837090df33ae529232ef15a19de8f198a
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Markos Chandras [Mon, 12 Mar 2018 09:51:44 +0000 (09:51 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "xci: Set options in run-functest.sh"
  - xci: Set options in run-functest.sh

    Functest healthcheck job actually fails but due to not setting
    options properly in run-functest.sh, we failed to notice this.

    Please note that this patch will enable changes to be blocked
    since creation of external network and associated subnet fail,
    due to an upstream issue. This causes functest healthcheck to
    fail which in turn results in Verified-1 on Gerrit.

    Change-Id: I32eeb422895930d039d3289ffb65e10763db9c4b
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoUpdate git submodules
Ross Brattain [Mon, 12 Mar 2018 09:06:04 +0000 (09:06 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "Update the fuel pod.yaml"
  - Update the fuel pod.yaml

    Fuel except Controller and Compute nodes
    it deploys an ODL node in noHA and HA deployment
    and also a Gateway node in a noHA deployment.
    So it is essential to describe them in Fuel's pod.

    JIRA: YARDSTICK-1050

    Change-Id: Iee6c25c5b2e2e4e661ceb0591bf2437f7f7fa7f8
Signed-off-by: Dimitrios Markou <mardim@intracom-telecom.com>
6 years agoUpdate git submodules
Ross Brattain [Mon, 12 Mar 2018 09:05:24 +0000 (09:05 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge changes from topic 'YARDSTICK-1040'

    * changes:
      Fetch Nova instance's private IP
      Assign nova instance to security group

  - Fetch Nova instance's private IP

    Add the capability to fetch the private IP of a Nova
    instance through the operation perspective.

    JIRA: YARDSTICK-1040

    Change-Id: Idc3d62bcd3f477a03a89f7dcc8d8616f3cfa2742
Signed-off-by: Dimitrios Markou <mardim@intracom-telecom.com>
  - Assign nova instance to security group

    Support the assigning of a nova instance to an
    existing security group through the operation
    perspective

    Change-Id: Ic1c26031c25d400fede2ecb298a66aec42dcfbc5
Signed-off-by: Dimitrios Markou <mardim@intracom-telecom.com>
6 years agoUpdate git submodules
DanielMartinBuckley [Wed, 7 Mar 2018 18:09:12 +0000 (18:09 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Do NOT hardcode interface speed for PROX tests

    JIRA: YARDSTICK-1035

    Do not hardcode NIC/interface speed in PROX test. Test assumes
    NIC used is 10Gbps. This is incorrect. It could support 1Gbps,
    10Gbps, 25Gbps, 40Gbps or something else.

    This is used to calculate pps (Packets Per Second)
    In Baremetal the NIC speed could be extracted. however when
    run on a virtual machine this is not possible.

    Solution:
    Add in options section of test file.

    eg.
    Options:
      interface_speed_gbps: 10

    Where 10 refers to a 10Gbps. In a setup where multiple interfaces
    are used. This will refer to the speed of the slowest connection.

    Change-Id: I89ab16479a2cdd1d79e52cbcc5a972762c60d057
Signed-off-by: Daniel Martin Buckley <daniel.m.buckley@intel.com>
6 years agoUpdate git submodules
Markos Chandras [Mon, 12 Mar 2018 08:52:03 +0000 (08:52 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "jjb: xci: Add postbuild publisher script to remove clean VM"
  - jjb: xci: Add postbuild publisher script to remove clean VM

    The clean VM normally stays around after the job is completed or killed
    due to timeout. Unless a job for the same distro is scheduled on the
    same node, that VM will state around for a while consuming valuable
    system resources. As such, we should remove it after the job finishes
    to free up resources for the new jobs.

    Change-Id: I88b5e32797969d9378588199a7ddb013bbe740c9
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Thomas Duval [Thu, 8 Mar 2018 17:07:46 +0000 (18:07 +0100)]
Update git submodules

* Update docs/submodules/moon from branch 'master'
  - Add a generator for OpenStack default policy.

    Change-Id: Ibe3b60ea5f21da20e0ebd9f2fd035790fdab4b76

6 years agoUpdate git submodules
Markos Chandras [Mon, 12 Mar 2018 08:44:12 +0000 (08:44 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "xci: Fix warning about missing inventory file"
  - xci: Fix warning about missing inventory file

    We no longer have a global inventory file and we don't need one right
    now since the bootstrapping opearations happen on the localhost anyway
    so we could be explicit and get rid of the following warning:

    [WARNING]: Host file not found: inventory
    [WARNING]: provided hosts list is empty, only localhost is available

    Change-Id: I5cfe7b0971397665cf9eae9c54985c44c4506449
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Markos Chandras [Mon, 12 Mar 2018 08:44:06 +0000 (08:44 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "xci: roles: configure-network: Avoid passing empty string to module"
  - xci: roles: configure-network: Avoid passing empty string to module

    The package module gets upset if we pass it an empty string as a package
    name

    Mar 09 15:15:33 TASK [configure-network : Ensure networking packages are present] **************
    Mar 09 15:15:49 fatal: [opnfv]: FAILED! => {"changed": false, "failed":
    true, "msg": "No package matching '' found available, installed or
    updated", "rc": 126, "results": ["iproute-3.10.0-87.el7.x86_64 providing
    iproute is already installed", "No package matching '' found available,
    installed or updated"]}

    As such, lets pass an existing package for non-Debian distros to make
    the module happy.

    Change-Id: Ib1128057097193278cfe50f79daf35332b54e781
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Markos Chandras [Mon, 12 Mar 2018 08:44:00 +0000 (08:44 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge changes from topic 'set-proper-constrains'

    * changes:
      xci: OSA: Ensure proper constrains are applied to pip installations
      xci: Move functest required packages to the functest role

  - xci: OSA: Ensure proper constrains are applied to pip installations

    We need to make sure that the pip packages that we install are
    compatible with the OSA components.

    Change-Id: I87e80dc9b8fb862d9f9039d835b0908f752de3ca
Signed-off-by: Markos Chandras <mchandras@suse.de>
  - xci: Move functest required packages to the functest role

    The docker packages that we install in the OPNFV VM are needed by
    functest so add them to the related role.

    Change-Id: I6ebe76fd030859f757d41ecf20c30ab76888ee9c
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Markos Chandras [Mon, 12 Mar 2018 08:43:53 +0000 (08:43 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "xci: scripts: vm: Update package manager cache and ignore errors"
  - xci: scripts: vm: Update package manager cache and ignore errors

    We need to make sure that the local package cache is updated before we
    try to install packages. Moreover, from time to time, something in the
    repos may be broken so we don't want to break the CI job. As such, make
    that step non-fatal as simply send the output to stdout so we can see
    what's wrong.

    Change-Id: I148e3b5435c604bb0d54339935255740c8ce07c0
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
wenjuan dong [Mon, 12 Mar 2018 07:58:02 +0000 (07:58 +0000)]
Update git submodules

* Update docs/submodules/doctor 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_dovetail_ptl
        name: 'Lead Name'
        email: 'lead email'
        id: 'lead lfid'
        company: 'lead company'

    Change-Id: I4d6a569cc129931ebe32d7c4d02ee517e9eff756
Signed-off-by: agardner <agardner@linuxfoundation.org>
6 years agoUpdate git submodules
Julien [Mon, 12 Mar 2018 01:13:25 +0000 (09:13 +0800)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Define parameters for triggering jobs

    In
    https://wiki.jenkins.io/display/JENKINS/Plugins+affected+by+fix+for+SECURITY-170,
    it indicates that:

        only build parameters that have been explicitly defined in a job's
        configuration will be available by default at build time. Any other
        arbitrary parameters added to a build by plugins will not be
        available by default.

    It has been tested in sandbox.opnfv.org that only defined parameters can
    be passed to the triggered jobs.

    For parameters required by TESTAPI are common to all the projectes,
    including installers, Functest, and Yardstick, it is convenient to
    define a common macro and used by others.

    Change-Id: Iac1da85445e1b5d75109ccd64b174f35151b9969
Signed-off-by: Julien <zhang.jun3g@zte.com.cn>
6 years agoUpdate git submodules
Yu Yang (Gabriel) [Mon, 12 Mar 2018 02:51:26 +0000 (02:51 +0000)]
Update git submodules

* Update docs/submodules/bottlenecks from branch 'master'
  - Merge "bottlenecks offiline support"
  - bottlenecks offiline support

    JIRA: BOTTLENECK-224

    This patch for bottlenecks support offiline.
    By use some offiline image rather than yardstick env prepare.
    This will solve some problem happened in yardstick image builder.

    Change-Id: I62b6606570c2ea6ce365212c79777af01c47c9a6
Signed-off-by: liyin <liyin11@huawei.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Sun, 11 Mar 2018 17:10:32 +0000 (18:10 +0100)]
Update git submodules

* Update docs/submodules/armband from branch 'master'
  - u/fuel: Bump & rebase for public IP start bump

    JIRA: ARMBAND-365

    Change-Id: I0ca3d397c137d022a68c14435ea1f69064fca359
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Tina Tsou [Sun, 11 Mar 2018 18:04:55 +0000 (18:04 +0000)]
Update git submodules

* Update docs/submodules/auto from branch 'master'
  - Merge "Add docs"
  - Add docs

    JIRA: AUTO-29

    On behalf of Gerard Damm to commit his codes.
    Keep docs in auto/docs.

    Change-Id: Ibf7008d51332af3bdd1176cfe5fccb95714e446e
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Sun, 11 Mar 2018 16:28:42 +0000 (17:28 +0100)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - [IDF] Move ip-range start higher for mgmt, public

    - move mgmt start to .10;
    - move public start to .100;
    - sync local idf-pod1;

    JIRA: ARMBAND-365

    Change-Id: I5d93c4f486daf280d8bdbe92f5aa7edd8d020db0
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Fri, 9 Mar 2018 19:34:55 +0000 (20:34 +0100)]
Update git submodules

* Update docs/submodules/pharos from branch 'master'
  - [IDF] arm, lf, ericsson: Align IP ranges start

    - Enea lab has infra IPs in public networks, similar to ericsson-pod1
      so start assigning public IPs from .100 onwards;
    - since most Fuel PODs have public (and mgmt) IPs starting at .100,
      align this across all PODs for uniformity;
    - align all mgmt networks start to .10;

    JIRA: ARMBAND-365

    Change-Id: I9df4083c9e2e4c15da5ce6a2cb24df560808161a
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Cédric Ollivier [Sun, 11 Mar 2018 12:05:18 +0000 (13:05 +0100)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Bypass APEX-570 to allow gating juju_epc

    This temporarily fix aims at testing juju_epc vs a non default region
    name [1]. It must be removed as soon as APEX is fixed [2].

    [1] https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-master/lastFailedBuild/console
    [2] https://jira.opnfv.org/browse/APEX-570

    Change-Id: I0724b694efb43709d43da6a30e11d1daafee47d8
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Zhijiang Hu [Sat, 10 Mar 2018 02:28:43 +0000 (10:28 +0800)]
Update git submodules

* Update docs/submodules/daisy from branch 'master'
  - Enlarge the time slice between creating VM and assign FIP

    tools/daisy-post-fip.sh is only for user manually test FIP after
    deployment, so this change does not have functional change.

    Change-Id: I360eee59a4b0eb12fc2e50b7c15c5ccae527061c
Signed-off-by: Zhijiang Hu <hu.zhijiang@zte.com.cn>
6 years agoUpdate git submodules
Feng Pan [Sat, 10 Mar 2018 16:02:36 +0000 (16:02 +0000)]
Update git submodules

* Update docs/submodules/apex from branch 'master'
  - Merge "Fixes ceph key import failures"
  - Fixes ceph key import failures

    There is an issue with HA deployments where sometimes key imports fail
    for Ceph which seem to occur around 50% of the time.  When logging in
    after a failure, the key import seems to work which indicates it may be
    a race condition.  In addition, sometimes the keyring that is created
    is missing the "caps" section of the file, which will also fail import.

    This patch adds a retries for a minute to try to import the key.  It
    also moves creating/importing to the same Exec because there is
    evidence that the file is being modified by some other process right
    after the file content is created in the previous exec.

    JIRA: APEX-563

    Change-Id: Ie8cfeb4803f6bed95f9e612eeb37c5cdf2d76617
Signed-off-by: Tim Rozet <trozet@redhat.com>
6 years agoUpdate git submodules
Cédric Ollivier [Sat, 10 Mar 2018 12:34:43 +0000 (13:34 +0100)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Enhance patrole configurations

    It allows listing the OpenStack services tested or setting test
    exlusions (e.g. tests requiring GRE as overlay).

    It should be noted that Keystone and Nova can't currently be tested
    without their default policy.json.

    Change-Id: I8909694b4ffc315959504441f5ea0b1f3023fe7c
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Markos Chandras [Sat, 10 Mar 2018 09:48:28 +0000 (09:48 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "bifrost: Do not run virsh commands if it's not installed"
  - bifrost: Do not run virsh commands if it's not installed

    Check if 'virsh' is available before trying to remove the VMs:

    Fixes the following warning

    ./scripts/destroy-env.sh: line 36: virsh: command not found
    ./scripts/destroy-env.sh: line 37: virsh: command not found
    ./scripts/destroy-env.sh: line 36: virsh: command not found
    ./scripts/destroy-env.sh: line 37: virsh: command not found
    ./scripts/destroy-env.sh: line 36: virsh: command not found
    ./scripts/destroy-env.sh: line 37: virsh: command not found

    Change-Id: I9c82c8b8b40462584c6324871284ba12d660ae9d
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Markos Chandras [Sat, 10 Mar 2018 09:48:17 +0000 (09:48 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "bifrost: Move DIB configuration variables to bifrost"
  - bifrost: Move DIB configuration variables to bifrost

    The DIB variables only make sense on bifrost so they should live in the
    bifrost provision script.

    Change-Id: I05baca7b9c6889a0d401a9288998991324d270af
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Markos Chandras [Sat, 10 Mar 2018 09:48:08 +0000 (09:48 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "bifrost: Optimize the OPNFV bifrost playbook"
  - bifrost: Optimize the OPNFV bifrost playbook

    We could combine several plays into a single one when they are executed
    to the same set of nodes. This has the added benefit that we avoid all
    the Ansible warm-up operations when a new play is started.

    Change-Id: Ibcad07d1b74f1d7cc5a9c60e4b2a6130fb6178fd
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Xuan Jia [Sat, 10 Mar 2018 05:39:51 +0000 (05:39 +0000)]
Update git submodules

* Update docs/submodules/container4nfv from branch 'master'
  - Merge "add Arm64 specific HPA documentation"
  - add Arm64 specific HPA documentation

    Heterogeneous computing is an important feature for a typical
    NFV scenario (Edge computing, Access networking).

    This document list specific hardware features for Arm64.
    Later, I will add more features in it.

    Change-Id: I5db29dd3842eb80dd707c762d7847c08e5b74252
Signed-off-by: Bin Lu <bin.lu@arm.com>
6 years agoUpdate git submodules
Xuan Jia [Sat, 10 Mar 2018 05:39:13 +0000 (05:39 +0000)]
Update git submodules

* Update docs/submodules/container4nfv 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: Ifcf3243882077cf8bfac454ebfa7ffa883fcdd44
Signed-off-by: agardner <agardner@linuxfoundation.org>
6 years agoUpdate git submodules
QiLiang [Wed, 7 Mar 2018 06:45:30 +0000 (14:45 +0800)]
Update git submodules

* Update docs/submodules/container4nfv from branch 'master'
  - Basic setup for istio sidecar auto injection

    To enable auto sidecar injection on specific namespace,
    you only need label the namespace with `istio-injection=enabled`, e.g.:
        kubectl label namespace default istio-injection=enabled

    For details please refer:
        https://istio.io/docs/setup/kubernetes/sidecar-injection.html#automatic-sidecar-injection

    Change-Id: I2059aa0be2ab3f4f942342850d286281c5f940d4
Signed-off-by: QiLiang <liangqi1@huawei.com>
6 years agoUpdate git submodules
Sharada Shiddibhavi [Sat, 10 Mar 2018 00:22:27 +0000 (00:22 +0000)]
Update git submodules

* Update docs/submodules/barometer from branch 'master'
  - Fixing the if/else logic in baro_tests/ mcelog_install()

    Follow on to the change #52775
    Fixed the if/else logic while installing the mcelog. And
    added log messages to show on which node, mcelog is installed.

    Change-Id: If5f61b1a780abd243516699e352a55baf0db96f7
Signed-off-by: Sharada Shiddibhavi <sharada.shiddibhavi@intel.com>
6 years agoUpdate git submodules
Trevor Bramwell [Fri, 9 Mar 2018 23:37:13 +0000 (15:37 -0800)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Fix functest job name for armband ci jobs

    Change-Id: I44c47347ce8759a545245bf2d3ad6d6657226875
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Aric Gardner [Fri, 9 Mar 2018 21:08:00 +0000 (21:08 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Revert functest-daily-jobs.yml again"
  - Revert functest-daily-jobs.yml again

    Switching to multijob forces to increase executors which is too risky
    so closed to the release.

    It basically reverts the previous functest-daily-jobs.yml [1].

    [1] git checkout 7f06f9492f4f8dd47669a553ef6e9c967fa29e8e jjb/functest/functest-daily-jobs.yml

    7f06f9492f4f8dd47669a553ef6e9c967fa29e8e

    Change-Id: I4a461108b11effe59e49108e1d95a9aae6e81ade
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Cédric Ollivier [Fri, 9 Mar 2018 20:01:15 +0000 (21:01 +0100)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Add one missing res dir in refstack

    It completes "Allow overriding tempest output dir" [1]

    [1] https://gerrit.opnfv.org/gerrit/#/c/53241/

    Change-Id: I236a1eb708de324dd42440897e317ce2d0787ffc
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Fatih Degirmenci [Fri, 9 Mar 2018 19:47:41 +0000 (19:47 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "A new docker container for QTIP"
  - A new docker container for QTIP

    This docker container can provide networking test service.
    Build this docker image by using opnfv docker build job.

    JIRA: QTIP-293

    Change-Id: I12310138a7c0b7b15bf5d34fb56bbbec1e65d206
Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
6 years agoUpdate git submodules
Fatih Degirmenci [Fri, 9 Mar 2018 17:20:46 +0000 (17:20 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "xci: roles: configure-network: Wait for connection when configuring the network"
  - xci: roles: configure-network: Wait for connection when configuring the network

    Ansible some times loses connection with the host after we configure its
    network interface. This shouldn't happen since the host is actually up
    and running. As a result of which, we need to fire-and-forget the
    restart of the network service and then try to reach the SSH port. We
    also need to make sure that all required packages are installed.
    Finally, we drop the 'ignore_errors' parameter since we really need to
    know when the networking configuration has failed.

    Change-Id: I366192737b5c4e01964eaf187396eababbdc808e
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Narinder Gupta [Fri, 9 Mar 2018 13:33:21 +0000 (07:33 -0600)]
Update git submodules

* Update docs/submodules/joid from branch 'master'
  - updated latest version of release charms.

    Change-Id: I00fb1654574137976efa1c7da84b8e53ed592a42
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
6 years agoUpdate git submodules
Markos Chandras [Fri, 9 Mar 2018 10:47:50 +0000 (10:47 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "xci: Rename provision-vm-nodes playbook"
  - xci: Rename provision-vm-nodes playbook

    The provision-vm-nodes playbook doesn't do any VM provisioning. It
    basically just bootstraps the bifrost repository so rename it to
    make it clear what this is about.

    Change-Id: I1c10bc6135686c5197d553a885412a94312a41bc
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Periyasamy Palanisamy [Fri, 9 Mar 2018 09:00:50 +0000 (10:00 +0100)]
Update git submodules

* Update docs/submodules/sdnvpn from branch 'master'
  - workaround for bgpvpn tempest run

    Adding tempest.conf file in the /etc/tempest directory as it is needed
    for tempest run command.

    Change-Id: I754dca76908014dcbb17e82a2e7b561d4826bff0
Signed-off-by: Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>
6 years agoUpdate git submodules
Fatih Degirmenci [Fri, 9 Mar 2018 10:24:27 +0000 (10:24 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "Add subproject INFO.yaml"
  - Add subproject INFO.yaml

    This change adds INFO.yaml for releng-xci Gerrit Project which is
    constructed by subset of committers of Releng project who are active in
    xci. New committers to releng-xci Gerrit Project will be nominated
    on Gerrit via separate changes and voted by releng-xci committers that
    are listed within releng-xci/INFO.yaml file as of today.

    A single mail with all the nominations will be sent to opnfv-tsc and
    opnfv-tech-discuss mailing lists announcing nominations. A followup
    mail will also be sent to announce the results.

    Change-Id: I1d49585276304b29ac86b03aff5fd45974a02ccc
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoUpdate git submodules
Georg Kunz [Tue, 6 Mar 2018 15:19:59 +0000 (16:19 +0100)]
Update git submodules

* Update docs/submodules/dovetail from branch 'master'
  - Separate valid docker tags for functest and yardstick

    Specifying separate valid docker tags for functest and yardstick for
    input validation.

    DOVETAIL-592

    Change-Id: I3365cdbd9ab521bf1368750c3f34b6863b3f7ec8
Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
6 years agoUpdate git submodules
Taseer Ahmed [Fri, 9 Mar 2018 09:15:37 +0000 (09:15 +0000)]
Update git submodules

* Update docs/submodules/qtip from branch 'master'
  - Merge "Add public keys for Taseer."
  - Add public keys for Taseer.

    Change-Id: I0e424307ad414849967a741bd338ae9dfd47bb2a
Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
6 years agoUpdate git submodules
Cédric Ollivier [Fri, 9 Mar 2018 07:37:25 +0000 (08:37 +0100)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Run all tests in a specific step

    It bypasses the missing senquential mode.
    It also fixes exclusions about fds and patrole.

    Several Functest could run in parallel but it's impossible from the
    time being due to an xtables lock.

    Change-Id: I831a8c995efbf2484afd86785f17f51981c921c1
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Tina Tsou [Fri, 9 Mar 2018 04:58:02 +0000 (04:58 +0000)]
Update git submodules

* Update docs/submodules/auto from branch 'master'
  - Merge "Update for resiliency improvements [WIP]"
  - Update for resiliency improvements [WIP]

    JIRA: AUTO-13

    On behalf of Gerard Damm to commit his codes.
    Temporarily keep resiliency test case under
    auto/testcase/resiliency.

    Change-Id: Iafcb74177673afc3f84f0797ebd93b02852d120d
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
6 years agoUpdate git submodules
Harry Huang [Fri, 9 Mar 2018 03:22:26 +0000 (11:22 +0800)]
Update git submodules

* Update docs/submodules/auto from branch 'master'
  - Test case for vnf onboarding [WIP]

    JIRA: AUTO-19

    On behalf of Eric Maye to commit his codes.
    Temporarily keep vnf onboarding test case under
    auto/testcase/vnf.

    Change-Id: Ib5f13587e50d32bb0188dceb9aa1497b06ceb0f9
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
6 years agoUpdate git submodules
Justin chi [Fri, 9 Mar 2018 03:51:29 +0000 (03:51 +0000)]
Update git submodules

* Update docs/submodules/compass4nfv from branch 'master'
  - Merge "add a multus with sriov interfaces installation"
  - add a multus with sriov interfaces installation

    Support deploying multus sriov CNI plugins by setting
    environment "kube_network_plugin" to "sriov".

    Change-Id: I3672fd7b6036063bdee57450c2100f39aa5ef68b
Signed-off-by: Di Xu <di.xu@arm.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Fri, 9 Mar 2018 03:04:33 +0000 (04:04 +0100)]
Update git submodules

* Update docs/submodules/armband from branch 'master'
  - u/fuel: Bump for neutron rootwrap fixup

    Change-Id: I493dc80c84d5bfd72c1f4062a1d6d600e5f0f0ce
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Cédric Ollivier [Thu, 8 Mar 2018 22:16:49 +0000 (23:16 +0100)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Fix a typo which runs all jobs in parallel

    Change-Id: I454ff72c377a96aa769919348b27813ad434eb89
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
spisarski [Wed, 7 Mar 2018 20:01:37 +0000 (13:01 -0700)]
Update git submodules

* Update docs/submodules/snaps from branch 'master'
  - Ensure the project for volumes are handled properly.

    Although this patch has added the project_name member to
    VolumeConfig, it does not work properly due to a cinder bug
    https://bugs.launchpad.net/cinder/+bug/1641982. However, the
    code will now allow for volumes with the same name to be
    created on the same pod just as long as they do not exist
    within the same project/tenant.

    JIRA: SNAPS-270

    Change-Id: Ia6f98e9b66793a69c0205d2d8e38bb3d03f3333e
Signed-off-by: spisarski <s.pisarski@cablelabs.com>
6 years agoUpdate git submodules
Fatih Degirmenci [Thu, 8 Mar 2018 22:01:21 +0000 (23:01 +0100)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - functest: Enable jobs per stream

    Change-Id: I5289fedf52354f2cef6a3202df27d35acccb7c6c
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoUpdate git submodules
Fatih Degirmenci [Thu, 8 Mar 2018 21:50:00 +0000 (21:50 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Add patrole and parser in Functest daily jobs"
  - Add patrole and parser in Functest daily jobs

    Change-Id: Iad86593d0b2711505999d5b0446d241cf56d5c8b
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Fatih Degirmenci [Thu, 8 Mar 2018 21:41:48 +0000 (22:41 +0100)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - fuel-armband: Fix functest job name

    Change-Id: Iaf8918942909e2b4b9608229f3fe0374efbd9d3f
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Thu, 8 Mar 2018 21:07:19 +0000 (22:07 +0100)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - Fix missing root_helper_daemon for cmp, gtw

    While at it, drop patch now upstream.

    JIRA: FUEL-348

    Fixes: cf6cd9cd

    Change-Id: Ieb4c93e9dc79a4e4dec140433574e042a1a6f2dc
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Aric Gardner [Thu, 8 Mar 2018 21:36:27 +0000 (21:36 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "fuel-armband: Add functest and yardstick as downstream jobs"
  - fuel-armband: Add functest and yardstick as downstream jobs

    Change-Id: I003f760adc2cb0b4959188b7f7d676d8fdbd8bb9
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoUpdate git submodules
agardner [Thu, 8 Mar 2018 21:27:08 +0000 (16:27 -0500)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Add functest multijobs back to apex.

    fingers crossed

    Change-Id: I220a36ec8a6a0d95e847a5672c4d8e5c0d34c5ac
Signed-off-by: agardner <agardner@linuxfoundation.org>
6 years agoUpdate git submodules
agardner [Thu, 8 Mar 2018 21:03:47 +0000 (16:03 -0500)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Functest jobs are not showing up

    Remove and then re-add to see if we can get jjb merge to work

    Change-Id: Iff380b38bbc5a69e2850cd91a99267b6d5b1128f
Signed-off-by: agardner <agardner@linuxfoundation.org>
6 years agoUpdate git submodules
spisarski [Tue, 6 Mar 2018 21:52:31 +0000 (14:52 -0700)]
Update git submodules

* Update docs/submodules/snaps from branch 'master'
  - Updated stack tests to only use an admin user when necessary.

    Changed super test class OSIntegrationTestCase to allow subclasses
    to set the user roles when required. For all heat stack test,
    the user role will always be 'heat_stack_owner'. 'admin' will be
    used for tests requiring this role (i.e. heat template creates
    flavors)

    JIRA: SNAPS-268

    Change-Id: I0ec01cfea6297547a6a158eec8e5c69af6d6c7d7
Signed-off-by: spisarski <s.pisarski@cablelabs.com>
6 years agoUpdate git submodules
agardner [Thu, 8 Mar 2018 20:35:32 +0000 (15:35 -0500)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Nothing change to apex job to kick it into working

    Change-Id: I88f33b7dcdf8f4d0a3aa3f8d46a07f10c62e6ae9
Signed-off-by: agardner <agardner@linuxfoundation.org>
6 years agoMerge "Remove duplicate of auto submodule"
Sofia Wallin [Thu, 8 Mar 2018 20:24:18 +0000 (20:24 +0000)]
Merge "Remove duplicate of auto submodule"

6 years agoUpdate git submodules
Fatih Degirmenci [Thu, 8 Mar 2018 20:18:34 +0000 (20:18 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "fuel: Add functest and yardstick as downstream jobs"
  - fuel: Add functest and yardstick as downstream jobs

    Change-Id: I90f42dc36ed0555788b517572088b5f09c1569fb
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoUpdate git submodules
Fatih Degirmenci [Thu, 8 Mar 2018 20:04:59 +0000 (21:04 +0100)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - functest: Enable functest daily jobs

    Change-Id: I1ce9e727a7f1448f657652a0f8d4bbab144b3ab9
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoRemove duplicate of auto submodule 29/53329/1
Trevor Bramwell [Thu, 8 Mar 2018 18:19:16 +0000 (10:19 -0800)]
Remove duplicate of auto submodule

Change-Id: I4f4d24752eb662c3ffd714b691ed3cfd4eb14b68
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
6 years agoUpdate git submodules
Valentin Boucher [Thu, 8 Mar 2018 14:21:39 +0000 (09:21 -0500)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Remove duplicate ubuntu trusty/14.04 os image

    VNF testcase use some Operating System image
    2 of those are the same but not with the same name

    Change-Id: Ide5ae683f606f7f58535c0a59cec45e4a30d225c
Signed-off-by: Valentin Boucher <valentin.boucher@kontron.com>
6 years agoUpdate git submodules
Feng Pan [Thu, 8 Mar 2018 16:18:14 +0000 (16:18 +0000)]
Update git submodules

* Update docs/submodules/apex from branch 'master'
  - Merge "Fix URL anchor in apex document."
  - Fix URL anchor in apex document.

    The latest OPNFV document template makes html file separately,
    hence index.html#<something> is invalid. This fix changes anchor
    URL to support separate file.

    Change-Id: Ic48c062e118d2faede53e8c9eaecbb99e58fddfb
Signed-off-by: Tomofumi Hayashi <tohayash@redhat.com>
6 years agoUpdate git submodules
Asteroide [Thu, 8 Mar 2018 16:18:12 +0000 (16:18 +0000)]
Update git submodules

* Update docs/submodules/moon from branch 'master'
  - Merge "Add information about which API attribute is important or not. In other terms, which attribute must be tested or not."
  - Add information about which API attribute is important or not.
    In other terms, which attribute must be tested or not.

    Change-Id: I81d4270a41353aa1ec958aff74ee741e9d172fbc

6 years agoUpdate git submodules
Periyasamy Palanisamy [Mon, 5 Mar 2018 09:47:48 +0000 (10:47 +0100)]
Update git submodules

* Update docs/submodules/sdnvpn from branch 'master'
  - potential fix for custom flavor creation issue

    Change-Id: Ic079e6d699927a400ca5f1530b18efacf3465629
Signed-off-by: Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>
6 years agoUpdate git submodules
Aric Gardner [Thu, 8 Mar 2018 16:12:32 +0000 (16:12 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Update Functest jobs (please vote an do not merge)"
  - Update Functest jobs (please vote an do not merge)

    We are going to try this again. Once this is merged, I will need
    to delete all the jobs that change job type and then re-merge
    releng merge will be broken during this short window.

    --- original commit message ---
    Add support for functest tier with multijob
    Add publishers separate for fetures and
    all other functest tiers
    Run functest features suits in a mutijob
    Since there are no arm specific requirements,
    remove arm-daily builders and jobs

    Original patch by Delia Popescu <delia.popescu@enea.com>

    Change-Id: I43422463c442ff6a18f6a98ab9909fc6c88e0259
    JIRA: FUNCTEST-917
Signed-off-by: agardner <agardner@linuxfoundation.org>
6 years agoUpdate git submodules
Emma Foley [Thu, 8 Mar 2018 16:10:49 +0000 (16:10 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "Fix numbering and html (generated) alignment"
  - Fix numbering and html (generated) alignment

    Fix numbering from 3,5,6 to 3,4,5 and alignment
    of the numbered list in HTML output.

    Trim lines to 79 chars or less.

    Change-Id: Icf233ef6bbf99ac0dcd8a9fc2599aee9dc1a46fd
Signed-off-by: Dino Simeon Madarang <dinox.madarang@intel.com>
Reviewed-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Reviewed-by: Emma Foley <emma.l.foley@intel.com>
Reviewed-by: Ross Brattain <ross.b.brattain@intel.com>
6 years agoUpdate git submodules
Harry Huang [Thu, 8 Mar 2018 06:27:48 +0000 (14:27 +0800)]
Update git submodules

* Update docs/submodules/auto from branch 'master'
  - Test case for resiliency improvements [WIP]

    JIRA: AUTO-13

    On behalf of Gerard Damm to commit his codes.
    Temporarily keep resiliency test case under
    auto/testcase/resiliency.

    Change-Id: Idb9217e5d18113f9da69df8cce5096567655dd66
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
6 years agoUpdate git submodules
Asteroide [Thu, 8 Mar 2018 14:25:17 +0000 (14:25 +0000)]
Update git submodules

* Update docs/submodules/moon from branch 'master'
  - Merge "Add import and export pdps"
  - Add import and export pdps

    Change-Id: I2c9b1f2b86af862887df4b890cd8b11db7c308ee

6 years agoUpdate git submodules
Periyasamy Palanisamy [Thu, 8 Mar 2018 11:34:08 +0000 (12:34 +0100)]
Update git submodules

* Update docs/submodules/sdnvpn from branch 'master'
  - Move import_modules inside try block

    Its still sdnvpn testsuite is failing at testcase_8 for bgpvpn ha
    scenario whereas it runs fine in the local setup. There is no logs
    generated from the CI run, moving import_modules inside try block
    and added few info logs to find out what is going on CI setup.
    [1] http://artifacts.opnfv.org/logs/functest/lf-pod1/2018-03-03_23-12-24/bgpvpn.log
    [2] https://build.opnfv.org/ci/job/functest-apex-baremetal-daily-master/827//console

    Change-Id: Icffa48cd56222bc1063ca16704e90a899380634d
Signed-off-by: Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>
6 years agoUpdate git submodules
Markos Chandras [Thu, 8 Mar 2018 11:39:42 +0000 (11:39 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - bifrost: Ensure OS images are present in the PXE directory

    The XCI deployment script may wipe the PXE directories so we need
    to place the OS images after this has happened so we don't download them
    every time.

    Change-Id: Iccf943bc75592e7f5dddea59dfee14b2b080e7ef
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Rodolfo Alonso Hernandez [Thu, 8 Mar 2018 12:34:33 +0000 (12:34 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "[bugfix] report generate command print error"
  - [bugfix] report generate command print error

    JIRA: YARDSTICK-1056

    Change-Id: I32ab9ae7482f6b81e00d6d3e7e858d980a2dd95f
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
6 years agoUpdate git submodules
Dimitrios Markou [Thu, 8 Mar 2018 10:49:42 +0000 (10:49 +0000)]
Update git submodules

* Update docs/submodules/sfc from branch 'master'
  - Merge "Update SNAPs usage of library"
  - Update SNAPs usage of library

    JIRA:SFC-120

    Snaps updated two methods which now require more parameters:

    https://github.com/opnfv/snaps/blob/master/snaps/openstack/utils/heat_utils.py#L260
    https://github.com/opnfv/snaps/blob/master/snaps/openstack/create_instance.py#L781

    Change-Id: I164c51298afd7b80ee88312f3a09abe7f09282a0
Signed-off-by: Manuel Buil <mbuil@suse.com>
6 years agoUpdate git submodules
Rodolfo Alonso Hernandez [Thu, 8 Mar 2018 09:54:35 +0000 (09:54 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "Allow VMs to access internet"
  - Allow VMs to access internet

    Add option to the config file for default network.
    Check to see if 1 default network is defined.
    Enable nat on all defined networks.
    Add default gateway to VM

    JIRA: YARDSTICK-1016

    Change-Id: Ie943a7c7b4f1a9673774cf8fedaba0af352cd7f4
Signed-off-by: John O Loughlin <john.oloughlin@intel.com>
6 years agoUpdate git submodules
Markos Chandras [Thu, 8 Mar 2018 09:30:00 +0000 (09:30 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "jjb: xci: xci-start-new-vm: Switch to pre-built bifrost OS images"
  - jjb: xci: xci-start-new-vm: Switch to pre-built bifrost OS images

    Change-Id: I19e60eea65b01ec22bb32c0efcdc6b071b22ca34
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Fatih Degirmenci [Thu, 8 Mar 2018 09:09:14 +0000 (09:09 +0000)]
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "Run patrole test in Jenkins"
  - Run patrole test in Jenkins

    Change-Id: I94fe7ecf83e72b4e7ed47bb25cfe010d9b3db15d
Signed-off-by: Linda Wang <wangwulin@huawei.com>
6 years agoUpdate git submodules
Markos Chandras [Wed, 7 Mar 2018 16:36:03 +0000 (16:36 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - bifrost: Use the pre-built XCI OS images instead of dib

    We already have images for all 3 distros which we could simply re-use
    for all the XCI VM deployments instead of building new ones everytime
    with DIB. The images will be copied to the new VM from the cache
    directory if they are available otherwise we will simply download them
    during the XCI execution phase.

    Change-Id: I2a8391650558511668654c6b54a10db316f867a2
Signed-off-by: Markos Chandras <mchandras@suse.de>
6 years agoUpdate git submodules
Cédric Ollivier [Wed, 7 Mar 2018 09:26:26 +0000 (10:26 +0100)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Add neutron and glance policy.json for patrole

    It only runs tests about neutron and glance because their policy.json
    can be still downloaded. Installers could override them via docker
    volumes if needed.

    Several tests about provider networks are currently excluded because
    GRE is selected.

    Change-Id: Ic4e2274e3f53e66be0174e117993e8c307b96bf9
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Cédric Ollivier [Wed, 7 Mar 2018 13:02:08 +0000 (14:02 +0100)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Allow overriding tempest output dir

    Change-Id: I31a5d2772bab168b3cb4e6b0713d6e95aa5b6fd7
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Thu, 8 Mar 2018 00:29:18 +0000 (01:29 +0100)]
Update git submodules

* Update docs/submodules/armband from branch 'master'
  - u/fuel: Bump for PXE/admin NAT restore

    JIRA: FUEL-348

    Change-Id: I6e5d8ce3b4b7dedf5c2a0f8c278be5eb8890b7a9
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 7 Mar 2018 23:49:03 +0000 (00:49 +0100)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - Revert "[baremetal] Retire mas01 NAT"

    Bring back public internet access to all cluster nodes via NAT
    on mas01 node, required for NTP syncing.

    NOTE: Both mcpcontrol and PXE/admin networks are currently
    hard wired to using /24 netmask, so we leverage that in pxe_nat.sls.

    JIRA: FUEL-348

    This reverts commit 9a6e655e0b851ff6e449027c01ac1a66188b0064.

    Change-Id: I7bab385f95f8c6d92cadc4e2149c2cd56e10c506
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 7 Mar 2018 22:02:40 +0000 (23:02 +0100)]
Update git submodules

* Update docs/submodules/armband from branch 'master'
  - u/fuel: Bump & rebase for net_config ip-range

    JIRA: FUEL-351

    Change-Id: I7b893e9d94eaf9e34daee3bf4442229be964c294
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 7 Mar 2018 21:00:29 +0000 (22:00 +0100)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - [IDF] net_config: Add support for custom ip-range

    - submodule: bump Pharos to pick up installer adapter support, as well
      as IDF updates for Ericsson baremetal pod1;
    - labs/local/virtual: Bump mgmt, public networks start addresses from
      .1 to .10, similar to ericsson-pod1;

    While at it, drop patch now upstream and instead adopt the new param
    'neutron:server:root_helper_daemon'.

    JIRA: FUEL-351

    Change-Id: I9bc244a7fd8698861a390ed2b6a27804be46c285
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Tina Tsou [Wed, 7 Mar 2018 22:59:01 +0000 (22:59 +0000)]
Update git submodules

* Update docs/submodules/auto from branch 'master'
  - Merge "vcpe_testscripts"
  - vcpe_testscripts

    Change-Id: I8f438c65f1d623f2125e1bf073646e5c2172049d
Signed-off-by: zc9211 <zhangchen.bri@chinatelecom.cn>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 7 Mar 2018 19:17:39 +0000 (20:17 +0100)]
Update git submodules

* Update docs/submodules/pharos from branch 'master'
  - [IDF, fuel] Add idf.net_config.*.ip-range support

    - labs: ericsson-pod1: Restrict management and public network IP
      ranges to exclude pre-existing infrastructe addresses;
    - fuel: Consume new ip-range network property in installer adapter;
      NOTE: For now, we only look at range start (and ignore end addr).

    JIRA: FUEL-351

    Change-Id: If81d0214f896fd42dfd0855ae4cecb06335d2e00
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Feng Pan [Wed, 7 Mar 2018 20:24:36 +0000 (20:24 +0000)]
Update git submodules

* Update docs/submodules/apex from branch 'master'
  - Merge "Adding libguestfs-tools as dependency"
  - Adding libguestfs-tools as dependency

      Needed for virt-customize the images

    Change-Id: Ide3fff2c6b850047add6eeed4082c518c36e6e74
Signed-off-by: Ricardo Noriega <rnoriega@redhat.com>
6 years agoUpdate git submodules
Cédric Ollivier [Wed, 7 Mar 2018 04:57:33 +0000 (05:57 +0100)]
Update git submodules

* Update docs/submodules/functest from branch 'master'
  - Set ODL tests and refstack client refs

    To prepare F-release, we should set git commit ids for these
    dependencies which follow the rolling release model (master).

    Change-Id: I3c791040ea5ec700cfa845ae642e6d862c49281f
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
6 years agoUpdate git submodules
Ross Brattain [Wed, 7 Mar 2018 19:05:14 +0000 (19:05 +0000)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - Merge "NFVi Test stops after one hour even if configured context duration is longer"
  - NFVi Test stops after one hour even if configured context duration is longer

    JIRA: YARDSTICK-1021

    If the Test is to take longer than the Default Duration timer use
    defined test time.
    If not use Default Duration time

    Change-Id: Idacc188e199ff031310b9826238b63ed3f2ea409
Signed-off-by: Daniel Martin Buckley <daniel.m.buckley@intel.com>
6 years agoUpdate git submodules
Ross Brattain [Wed, 7 Mar 2018 16:09:03 +0000 (08:09 -0800)]
Update git submodules

* Update docs/submodules/yardstick from branch 'master'
  - bugfix: fix prepare_env.sh shell quote

    JIRA: YARDSTICK-1051

    Change-Id: If28bc0f2fe2e3cdec95882bb2abedf839e6ac2e0
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
6 years agoUpdate git submodules
Markos Chandras [Wed, 7 Mar 2018 17:40:09 +0000 (17:40 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "Bump bifrost sha and set UPPER_CONSTRAINTS_FILE"
  - Bump bifrost sha and set UPPER_CONSTRAINTS_FILE

    The lack of UC means that pip is attempting to install libvirt-python 4.1.0,
    which is failing on Ubuntu due to
        https://bugs.launchpad.net/openstack-requirements/+bug/1753539.
    Currently upper-constraints limits libvirt-python to 4.0.0, which does not
    have this issue.

    Change-Id: Idc97a0d9928cebafc9167614723236d2584cc93f
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 7 Mar 2018 16:36:30 +0000 (16:36 +0000)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - Merge "[novcp] Add deploy argument `-N` (experimental)"
  - [novcp] Add deploy argument `-N` (experimental)

    Instead of duplicating scenarios for NOVCP, allow it to be specified
    using a new deploy argument, `-N`.

    Things are getting convoluted, so instead of creating dedicated
    '*_pdf.yml.j2' files for each group of similar features, apply the
    templating in-place and rename all affected files to ".yml.j2".

    This breaks .gitignore assumption of hiding only "*_pdf.yml" files,
    so extend (manually) the <mcp/reclass/classes/cluster/.gitignore>
    with `git ls-files --exclude-standard -o` after an expansion.

    - ha: move nfv.cpu_pinning to j2, conditioned by 'baremetal';
    - ha: add cmp00* vnode definitions (hugepages need more RAM);
    - labs/local: enable hugepage params for non-dpdk noha;
    - salt.sh: add route_wrapper to all non-infra VMs;

    This change extends novcp support to all HA scenarios.

    Change-Id: I7a80415ac33367ab227ececb4ffb1bc026546d36
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 7 Mar 2018 16:36:11 +0000 (16:36 +0000)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - Merge "[vnode parsing] Move core logic to j2"
  - [vnode parsing] Move core logic to j2

    j2/python is easier to read and manipulate strings, although it does
    need some special care about undefined dict keys.

    With this in place, deploy.sh only contains the higher level logic for
    the deployment process.

    - merge arch-specific default configuration files into a singular
      file with arch name as main dict key of old config (also avoids
      creating duplicate 'virtual' YAML keys in $LOCAL_PDF);
    - move template handling to separate <lib_template.sh>;
    - decouple tight bash ordering of scenario expansion -> parse_yaml ->
      variable export (e.g. CLUSTER_DOMAIN) -> re-use in cluster j2s;
      however we can't parse *all* j2s in one go, as scenario j2s might
      expand to YAMLs needed while expanding cluster j2;
    - split `do_templates` into separate functions for each stage, with
      no coupling between them other then call order;

    Change-Id: I4b5e804094c00e5e918caf769fd85fa52181ad76
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 7 Mar 2018 16:35:36 +0000 (16:35 +0000)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - Merge "Clean up aodh formula symlink"
  - Clean up aodh formula symlink

    Change-Id: I1d84b5d4e3eb0de1c3ebf6fc5a538ee6714d53b2
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
6 years agoUpdate git submodules
Alexandru Avadanii [Wed, 7 Mar 2018 16:35:26 +0000 (16:35 +0000)]
Update git submodules

* Update docs/submodules/fuel from branch 'master'
  - Merge "[docs] Openstack endpoints description"
  - [docs] Openstack endpoints description

    - Describe SSL certificate usage for public endpoints

    - Fixed all code-blocks formatting on the file

    JIRA:FUEL-328

    Change-Id: Ifecab459ee0d633b4d8a254dcb01c92f76b66d4f
Signed-off-by: Guillermo Herrero <guillermo.herrero@enea.com>
6 years agoUpdate git submodules
Fatih Degirmenci [Wed, 7 Mar 2018 16:02:20 +0000 (16:02 +0000)]
Update git submodules

* Update docs/submodules/releng-xci from branch 'master'
  - Merge "Remove opnfv vm from known_hosts"
  - Remove opnfv vm from known_hosts

    Change-Id: I21998a31a26a201d767734d574ade8db7fd50c92
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
6 years agoUpdate git submodules
Blaisonneau David [Mon, 5 Feb 2018 10:56:51 +0000 (11:56 +0100)]
Update git submodules

* Update docs/submodules/pharos from branch 'master'
  - LF-POD4 PDF/IDF

    PDF+IDF for LF POD4 inspired from securelab PDF and LF-pod2 XDFs.

    Change-Id: If7ee14efe5f279104a18d2a3281aa7b23bdf704a