Age | Commit message (Collapse) | Author | Files | Lines |
|
* Update docs/submodules/dovetail from branch 'master'
- Fix aarch64 patch for Dovetail container
Change-Id: I3746136e9002a14eea81c38ea54cbbad7fa68da1
Signed-off-by: xudan <xudan16@huawei.com>
|
|
* Update docs/submodules/releng-xci from branch 'master'
- Merge "xci: playbooks: Copy local changes to scenarios"
- xci: playbooks: Copy local changes to scenarios
Make sure that any local changes to scenarios are being propagated to
the checkouts. This should only happen when we are testing the 'master'
branch of the scenario since it may be desirable to test a specific SHA
in which case we shouldn't modify the checkout code.
Change-Id: I4197f09a3e4d5a54c86905bc556b06e08948fbc2
Signed-off-by: Markos Chandras <mchandras@suse.de>
|
|
* Update docs/submodules/releng from branch 'master'
- Putting the required back
This is required for StorPerf multi-arch and causes all the StorPerf
ARM builds to fail if it is not present.
Change-Id: I302c0471a52759cd9c051741e2b0bb086b87e8eb
Signed-off-by: mbeierl <mark.beierl@dell.com>
|
|
* Update docs/submodules/yardstick from branch 'master'
- Merge "Replace subprocess "check_output" with "Popen""
- Replace subprocess "check_output" with "Popen"
"check_output" is a blocking wrapper for "Popen" which returns the output
of the command execution or raises an exception in case of error.
"Popen" is a non-blocking function that allows to create asynchronous
tasks. It returns any possible execution error but doesn't raise an
exception; this is delegated to the developer.
This code is used in the Yardstick CLI base test class.
Change-Id: Ie3e1228b2d40cb306354447653678bf581bc9697
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
|
|
* Update docs/submodules/storperf from branch 'master'
- Fixes Availability Zone Support
Fixes typo and passes the availability zone parameter
through all the heat templates.
Change-Id: I12d9d5d32ceb6461833fcfb4ea2961a34b97c35a
JIRA: STORPERF-225
Signed-off-by: mbeierl <mark.beierl@dell.com>
|
|
* Update docs/submodules/fuel from branch 'master'
- Merge "[ovn] Weed out gateway node from reclass storage"
- [ovn] Weed out gateway node from reclass storage
Change-Id: I87efd87f8ac05ed9b3189e5dba80748e07c86d5d
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
|
|
* Update docs/submodules/fuel from branch 'master'
- [vcp] Catch 'no response' of salt minion as well
Salt minion could return 'no response' and cause an
unconfigured state of the vcp node(s), so catch this output after linux
state as well. Also clean up excess route on proxy nodes.
Change-Id: I3183fa09ff41a8f027ee789869bdae0c3962ab8f
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
|
|
* Update docs/submodules/functest from branch 'master'
- Add euphrates as a docker tag to the release notes
Change-Id: I35080b3e701de6341926f86e8aa1910ef777f565
Signed-off-by: Jose Lausuch <jalausuch@suse.com>
|
|
* Update docs/submodules/yardstick from branch 'master'
- Merge changes from topics 'YARDSTICK-875', 'YARDSTICK-874'
* changes:
Check if multiverse repository is available in Ubuntu
Specify supported architectures for Ubuntu backports repository
- Check if multiverse repository is available in Ubuntu
In Ubuntu, multiverse repository is needed to install the image
dependencies [1]. If this repository is not enabled, it should be
added as part of the role "add_custom_repos".
[1] https://github.com/opnfv/yardstick/tree/master/ansible/roles/install_image_dependencies
JIRA: YARDSTICK-875
Change-Id: Ie37ebf87bf245185447f2b675568af9bd38219c0
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
- Specify supported architectures for Ubuntu backports repository
Currently Trusty (Ubuntu 14.04 LTS) and Xenial (Ubuntu 16.04 LTS) doesn't
have support for arch=ARM64 in backports repository:
- http://archive.ubuntu.com/ubuntu/dists/xenial-backports/
- http://archive.ubuntu.com/ubuntu/dists/trusty-backports/
During the Yardstick image building process, the repository is added to the
APT repository list. In order to avoid errors during the repository retrival,
the available architectures must be specified [1].
[1]https://github.com/opnfv/yardstick/blob/stable/euphrates/ansible/roles/add_custom_repos/templates/sources.list.j2#L4
JIRA: YARDSTICK-874
Change-Id: I7774189fbdd7d74ff5df29526ba0da2693b3b53a
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
|
|
* Update docs/submodules/yardstick from branch 'master'
- Merge "Bugfix in role enable_hugepages_on_boot"
- Bugfix in role enable_hugepages_on_boot
Make role idempotent.
Current regex doesn't match for:
linux /boot/vmlinuz-4.10.0-30-generic root=/dev/nvme0n1p1 ro vga=788 text
Change-Id: If5eb20fce4ddc35bb109c00eb7565853b3763950
Signed-off-by: Jan Malanik <janx.malanik@intel.com>
Signed-off-by: Malanik Jan <janx.malanik@intel.com>
|
|
* Update docs/submodules/yardstick from branch 'master'
- Merge "Bugfix:proxy env, ansible multinode support"
- Bugfix:proxy env, ansible multinode support
JIRA: YARDSTICK-893
- hosts and plays in ansible/nsb_setup.yml refactored
Fixed proxy configuration from env or /etc/environment in nsb_setup.sh
Fixed ansible parameter 'environment: "{{ proxy_env }}"' in:
- roles for components download.
- roles for components dependencies install.
Now, you can use ansible to modify all yardstick-standalone hosts at once.
1) Configure http[s]_proxy in
- /etc/environment
or
- env variables
2) Modify ansible/yardstick-install-inventory.ini:
[jumphost]
localhost ansible_connection=local
[yardstick-standalone]
yardstick-standalone-node ansible_host=192.168.1.2
yardstick-standalone-node-2 ansible_host=192.168.1.3
[all:vars]
ansible_user=root
ansible_pass=root
3) start:
./nsb_setup.sh # for baremetal/sriov
./nsb_setup.sh <path to admin-openrc.sh> #for openstack heat
Change-Id: I167db8bae8303210f21e8ae6f3870ef054bbedce
Signed-off-by: Malanik Jan <janx.malanik@intel.com>
|
|
* Update docs/submodules/yardstick from branch 'master'
- Merge "Remove "flake8" and "pep8" from test-requirements"
- Remove "flake8" and "pep8" from test-requirements
Removed "flake8" and "pep8" from test-requirements. Since
44070670c798d2cde2824f3150b2b11bf35c6319, "pylint" is the
code style checker, instead of "flake8" or "pep8".
JIRA: YARDSTICK-832
Change-Id: Iee598b0b1793d71dc74be36fa1875387b17d1e25
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
|
|
* Update docs/submodules/yardstick from branch 'master'
- Merge "Variable local_iface_name is read before it is set"
- Variable local_iface_name is read before it is set
Moving variable setting before reading
Verified via TC:
yardstick/samples/vnf_samples/nsut/ping/tc_ping_heat_context.yaml
JIRA: YARDSTICK-899
Change-Id: Ia2feac1ed4e67dccd02446ba27afc9d40e87be35
Signed-off-by: Jiri Prokes <jirix.x.prokes@intel.com>
|
|
* Update docs/submodules/yardstick from branch 'master'
- Merge "Fix the pylint version for pep8 tox target"
- Fix the pylint version for pep8 tox target
Change-Id: I5e1c169a6ca13b3f46129b2c4a15ccbab2677a63
Signed-off-by: Martin Banszel <martinx.banszel@intel.com>
|
|
* Update docs/submodules/yardstick from branch 'master'
- Add doc about installing YardStick on OpenSUSE
Add guide to install YardStick on OpenSUSE and modify the README
to state that OpenSUSE is supported.
Change-Id: Id107b24e0ec1ab441426bb150d9e863986d20fc1
Signed-off-by: Rossella Sblendido <rsblendido@suse.com>
|
|
* Update docs/submodules/moon from branch 'master'
- Update libraries name in the platform
Change-Id: I743254aa58e2fb57b78c23ebc9f5c69049b4905d
|
|
* Update docs/submodules/releng-xci from branch 'master'
- Merge "xci: nfvi: OSA: Set 'pipefail' when SSHing on the OPNFV host"
- xci: nfvi: OSA: Set 'pipefail' when SSHing on the OPNFV host
We need to set the 'pipefail' option so if an SSH command fails we stop
the deployment instead of silently ignoring it just because the right
leg of the pipe succeeded.
Change-Id: Iebc720fbd3e6e96fc7135a6cf15e3c0941974d2c
Signed-off-by: Markos Chandras <mchandras@suse.de>
|
|
* Update docs/submodules/releng-xci from branch 'master'
- Merge "bifrost: Bump bifrost SHA"
- bifrost: Bump bifrost SHA
Bump the bifrost SHA so we can get rid of the testvm.xml.j2 template
which has now made it upstream.
Change-Id: Ia9cdd999a5702f37125d38e0ba68bb31920d2117
Signed-off-by: Markos Chandras <mchandras@suse.de>
|
|
* Update docs/submodules/doctor from branch 'master'
- use keystone v3 API
Change-Id: Ia642279a99ad9bf014764337c8a5170e3c98e2f2
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
|
|
* Update docs/submodules/releng-xci from branch 'master'
- Merge "Bump sha on openstack-ansible-lxc_hosts"
- Bump sha on openstack-ansible-lxc_hosts
The commit 6b529de0315fe6cd12f6e78c00a5f2f2d3a01e28 in
openstack-ansible-lxc_hosts reverts an earlier change that introduced
systemd-networkd to lxc containers that run OpenStack services. This
prevents the containers from being stopped (ie, lxc-stop fails until it
times out), since systemd-networkd restarts. lxc-stop sends the SIGRT+3
message to the container which the container interprets as "halt".
systemd-networkd conflicts with shutdown, so when the system tries to
enter halt, systemd-networkd gets started again. As a result, the
container does not shut down cleanly.
This patch uses a version of openstack-ansible-lxc_hosts that does not
use systemd-networkd in the containers.
Change-Id: Ie85d2117ce2e6e8afa87810d690eab78e3b3be3d
Signed-off-by: Tapio Tallgren <tapio.tallgren@nokia.com>
|
|
* Update docs/submodules/releng-xci from branch 'master'
- Fix the parameter of scenario directories
1. the "+" and "'" will be part of the string in the path parameter of ansible.
So the directories we create are not right. we need remove these char.
2. it miss the "{{" in ansible variable
Change-Id: I30c9804450588c63f5f18c63c1d90cd869fad90e
Signed-off-by: wutianwei <wutianwei1@huawei.com>
|
|
* Update docs/submodules/moon from branch 'master'
- Merge "Fix a bug on CORS in Keystone container"
- Fix a bug on CORS in Keystone container
Change-Id: I303af5edb9e275423a3d3347a9d71039e584102a
|
|
* Update docs/submodules/vswitchperf from branch 'master'
- Merge "Trex_2544_verification: Add verification functionality to Trex code"
- Trex_2544_verification: Add verification functionality to Trex code
- Adds T-Rex verification step as implemented by other trafficgens
- Adds check in rfc2544 loop for if no packets are received to fail test
immediately
- Refactors the trial code to support the verification option
- Adds trial_run function
- Removed unused line speed configuration setting
JIRA: VSPERF-553
Change-Id: Ie324fe8fb6bf79fe0dc337b91af2bf83e901a8ab
Signed-off-by: Christian Trautman <ctrautma@redhat.com>
|
|
* Update docs/submodules/bottlenecks from branch 'master'
- bug-fix: neutron quota for euphrates
JIRA: BOTTLENECK-215
It seems SFC is enabled defaultly in euphrates.
So modify the quota for SFC
Change-Id: Id8b88f03b029ca6a4c1c13098d799958601f1bb6
Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
|
|
* Update docs/submodules/compass4nfv from branch 'master'
- Add compass-docker-compose
1. Add ansible for docker compose containerized
compass
2. deploy/conf/compass.conf no longer specify
image tags for runtime. build.yaml now is added
into compass tarball to be the only place determine
image tags
3. This patch is based on patch:
https://gerrit.opnfv.org/gerrit/#/c/47393/
use merged compass-tasks
4. Tempoarily using private docker repo for
compass-tasks. Switch to opnfv repo when patch
https://gerrit.opnfv.org/gerrit/#/c/47329/
is merged
5. Modify ansible callback module accrodingly
Change-Id: I0728a9002a1cc7804c9e8f13bd1afdccb684a159
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
|
|
* Update docs/submodules/container4nfv from branch 'master'
- Merge "Upload docker images for container4nfv"
- Upload docker images for container4nfv
1. Maintainer name updated inside src/vnf/ping/Dockerfile.
2. ci/upload.sh updated to generate and upload vnf images.
Change-Id: I823efb184cefdb72fb5ff3feb9c5dc5937f5de5a
Signed-off-by: Laura Sofia Enriquez <lsofia.enriquez@gmail.com>
|
|
* Update docs/submodules/container4nfv from branch 'master'
- onap deployment by kubeadm + onap oom
Change-Id: I4db577c754a4cd550482e40c2a96004faf65bd24
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
|
|
* Update docs/submodules/nfvbench from branch 'master'
- [NFVBENCH-59] Add Unit Testing of the NDR/PDR convergence algorithm using the dummy traffic gen
[NFVBENCH-60] Fix pylint warnings
Change-Id: I72deec060bf25774d1be33eaeefc74b42a576483
Signed-off-by: ahothan <ahothan@cisco.com>
|
|
* Update docs/submodules/moon from branch 'master'
- Merge "python_moonclient stable"
- python_moonclient stable
Change-Id: Ida295ffbe727275916bb80924d275771b592fbb5
Signed-off-by: RHE <rebirthmonkey@gmail.com>
|
|
* Update docs/submodules/joid from branch 'master'
- modified as huawei lab moved to new location.
Change-Id: I1f3fb105564c7a6ea54324828253b0145f3c6b77
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
|
|
* Update docs/submodules/sfc from branch 'master'
- Merge "Add the xci_overrides file"
- Add the xci_overrides file
We can override variables by default using this file. One of those variables
is the VM_MEMORY_SIZE
Change-Id: I19f12151a65e90399e1ffcfa2465256bc5376abe
Signed-off-by: Manuel Buil <mbuil@suse.com>
|
|
* Update docs/submodules/armband from branch 'master'
- u/fuel: Bump & rebase for upstream libvirtd socket
Change-Id: I4a5cb78eff164fe9984362b51c34a8359baa8a8d
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
|
|
* Update docs/submodules/releng from branch 'master'
- [fuel] Schedule ovn-nofeature-noha scenario
Change-Id: I67574f37a2bb4908b935fdc3e72ecf891ad66def
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
|
|
* Update docs/submodules/sfc from branch 'master'
- Migrate to SNAPs openstack library
Functest is deprecating its openstack library which we were using extensively
We need then to move to an alternative and the best appears to be SNAPs
Change-Id: Icaa0b9f1ec580545b9d0faa88be2080a310deaf7
Signed-off-by: Manuel Buil<mbuil@suse.com>
|
|
* Update docs/submodules/snaps from branch 'master'
- Added substitution variable support.
Change-Id: I57e10be315c288d75d61b014940cd02c0c0134fa
Signed-off-by: spisarski <s.pisarski@cablelabs.com>
|
|
* Update docs/submodules/apex from branch 'master'
- Merge "Updates OpenDaylight BGPVPN driver"
- Updates OpenDaylight BGPVPN driver
apex-tripleo-heat-templates: Ib94b0182fd5fbc3a254cae5862a82982bf3131be
Change-Id: Ie1e73edce9027056fb2e2870ee4705bf69251e11
Signed-off-by: tomsou <soth@intracom-telecom.com>
|
|
* Update docs/submodules/fuel from branch 'master'
- Bring in ovn based scenario
OVN based scenario doesn't require conventional gateway
node since connectivity to external networks and routing
occurs on compute nodes.
Change-Id: I81e0d497170d5ffb067adf13b0e46290525f26a6
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
|
|
* Update docs/submodules/qtip from branch 'master'
- Merge "Add sphinx build configuration"
- Add sphinx build configuration
This allows local build of document for preview
Change-Id: I9f70ad68358cdd5d47afebc9e440555c48a7c913
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
|
|
* Update docs/submodules/moon from branch 'master'
- python_moondb rename
Change-Id: I6442b6f96393b4fcba8a6352ecb4ad845e6346c0
Signed-off-by: RHE <rebirthmonkey@gmail.com>
|
|
* Update docs/submodules/qtip from branch 'master'
- fix some bugs about mcp module
- ansible user should be "ubuntu"
- SUT:children is "compute" not "compute-nodes" in the template/hosts
- logical error about node_meta
- Uniform installer_group mcp value
Change-Id: I8c40accbe2b5d65d93044faebaf166703ab63932
Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
|
|
* Update docs/submodules/moon from branch 'master'
- python_moonutilities rename
Change-Id: I306268f5b95dee283313f76db2e1cac49fc9c0ff
Signed-off-by: RHE <rebirthmonkey@gmail.com>
|
|
* Update docs/submodules/releng from branch 'master'
- xci: Create periodic jobs for upstream osa
This change takes xci-verify-jobs as base and adjusts osa-periodic
jobs to ensure they do what they are supposed to.
The structure of periodic jobs is pretty similar to xci-verify-jobs and the
differences comparing to them are
- OPENSTACK_OSA_VERSION is set to master.
- SCM type changed to git-scm from gerrit
- Voting is removed.
- Triggering will be done using pollscm to ensure we only run jobs when something
changes upstream. Triggers are not enabled yet until the basics are verified
working.
This change requires https://gerrit.opnfv.org/gerrit/#/c/49275/ in order for
periodic jobs to work as expected.
Further changes are needed to finalize the structure.
Change-Id: I8f6519ccce93e6b8b65509638294419459fd36e8
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
|
|
* Update docs/submodules/moon from branch 'master'
- Merge "moon performance test"
- moon performance test
Change-Id: I15d2851364baa567974991e54a21404b7bef6c0e
Signed-off-by: RHE <rebirthmonkey@gmail.com>
|
|
* Update docs/submodules/releng-xci from branch 'master'
- Merge "xci: OSA: Move all the OSA specific playbooks to the NFVI directory"
- xci: OSA: Move all the OSA specific playbooks to the NFVI directory
Move all the playbooks that only make sense for OpenStack-Ansible
deployments to the NFVI/OSA directory where they belong. This further
disassociates XCI from OSA.
Change-Id: Iab8b6dc81d9025a1d85608a98fb1eee0f1c6a69f
Signed-off-by: Markos Chandras <mchandras@suse.de>
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
|
|
* Update docs/submodules/releng-xci from branch 'master'
- xci: playbooks: Fix conditional for scenario/flavor fact
We need to use proper jinja2 code to set the fact properly.
Change-Id: I903233c0e059edf2af973ea9c08b8bd80795e1a9
Signed-off-by: Markos Chandras <mchandras@suse.de>
|
|
* Update docs/submodules/functest from branch 'master'
- Update cirros image to 0.4.0
ChangeLog: https://git.launchpad.net/cirros/plain/ChangeLog
Change-Id: Ic41bec08b9dbfa7f1a501d5ba18602ba455fb5d0
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
|
|
* Update docs/submodules/functest from branch 'master'
- Enable orchestra testcases for Daisy only
The current testcases have several issues which limit the
possible successful runs to Daisy [1].
[1] https://jira.opnfv.org/browse/ORCHESTRA-17
Change-Id: Iecaf21738e19aae6a88171385f11afcffd28a348
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
|
|
* Update docs/submodules/moon from branch 'master'
- Merge "comments needed to be done"
- comments needed to be done
Change-Id: I0214fa7d30539daa0fc0e62465299ebf643eb356
Signed-off-by: sgdt6900 <rhanafy.ext@orange.com>
|
|
* Update docs/submodules/moon from branch 'master'
- python_moonclient init
Change-Id: Iaf104b3208a07dc80cc266830be444d019b0f196
Signed-off-by: RHE <rebirthmonkey@gmail.com>
|
|
* Update docs/submodules/functest from branch 'master'
- Merge "Get auth token when checking deployment"
- Get auth token when checking deployment
JIRA: FUNCTEST-900
Change-Id: Ie313d273a357a35b176b3918de108d85164776fa
Signed-off-by: Linda Wang <wangwulin@huawei.com>
|