summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/release/release-notes/release_notes.rst39
-rw-r--r--docs/testing/user/userguide/overview.rst12
-rw-r--r--requirements/requirements.txt2
-rw-r--r--test-scheduler/docker/clean.sh4
4 files changed, 57 insertions, 0 deletions
diff --git a/docs/release/release-notes/release_notes.rst b/docs/release/release-notes/release_notes.rst
index f3bba812..876372d4 100644
--- a/docs/release/release-notes/release_notes.rst
+++ b/docs/release/release-notes/release_notes.rst
@@ -67,6 +67,12 @@ Version History
| Jul 2nd, 2018 | 1.7.2 | Bottlenecks Fraser release 6.2 |
| | | |
+----------------+--------------------+-----------------------------------+
+| Dec 10th, 2018 | 1.8.0 | Bottlenecks Gambia release 7.0 |
+| | | |
++----------------+--------------------+-----------------------------------+
+| May 10th, 2019 | 1.9.0 | Bottlenecks Hunter release 8.0 |
+| | | |
++----------------+--------------------+-----------------------------------+
Summary
=======
@@ -89,6 +95,33 @@ Bottlenecks_ team.
Release Data
============
+Hunter Release Data
+-----------------------
+
++--------------------------------------+--------------------------------+
+| **Project** | Bottlenecks |
+| | |
++--------------------------------------+--------------------------------+
+| **Repo/tag** | * Bottlenecks/8.0.0 |
+| | |
+| | |
++--------------------------------------+--------------------------------+
+| **Bottlenecks Docker image tag** | * 8.0.0 |
+| | |
+| | |
++--------------------------------------+--------------------------------+
+| **Release designation** | * 8.0.0 |
+| | |
+| | |
++--------------------------------------+--------------------------------+
+| **Release date** | * May 10th 2019 |
+| | |
+| | |
++--------------------------------------+--------------------------------+
+| **Purpose of the delivery** | Hunter stable release |
+| | |
++--------------------------------------+--------------------------------+
+
Fraser Release Data
-----------------------
@@ -303,6 +336,12 @@ Software Deliverables
Documentatiion Deliverables
---------------------------
+**Bottlenecks documentation <hunter>**
+
+* Release Notes: http://docs.opnfv.org/en/stable-hunter/submodules/bottlenecks/docs/release/release-notes/release_notes.html
+* User Guide: http://docs.opnfv.org/en/stable-hunter/submodules/bottlenecks/docs/testing/user/userguide/index.html
+* Developer Guide: http://docs.opnfv.org/en/stable-hunter/submodules/bottlenecks/docs/testing/developer/devguide/index.html
+
**Bottlenecks documentation <fraser>**
* Release Notes: http://docs.opnfv.org/en/stable-fraser/submodules/bottlenecks/docs/release/release-notes/release_notes.html
diff --git a/docs/testing/user/userguide/overview.rst b/docs/testing/user/userguide/overview.rst
index a03229f0..fc8fff14 100644
--- a/docs/testing/user/userguide/overview.rst
+++ b/docs/testing/user/userguide/overview.rst
@@ -38,6 +38,16 @@ Euphrates:
* Extend Life-cycle test to data-plane to validate the system capability to handle concurrent networks usage.
* Testing framework is revised to support installer-agnostic testing.
+Gambia:
+
+* Introduction of kubetenetes stress test for scaling capability of PoD management
+* Introduction of test scheduler supporting testing services ochestration while providing monitoring services
+
+Hunter:
+
+* Introduction of AI based algorithms to do anomaly detection and correlation analysis of Bottlenecks testing results
+# Enhancing test scheduler to supporting testing results graphing
+
These enhancements and test cases help the end users to gain more comprehensive understanding of the SUT.
Graphic reports of the system behavior additional to test cases are provided to indicate the confidence level of SUT.
Installer-agnostic testing framework allow end user to do stress testing adaptively over either Open Source or commercial deployments.
@@ -59,6 +69,8 @@ Integration Description
+-------------+----------------------+----------------------+
| Gambia | Any | POSCA, kubestone |
+-------------+----------------------+----------------------+
+| Hunter | Any | POSCA, kubestone |
++-------------+----------------------+----------------------+
Test suite & Test case Description
==================================
diff --git a/requirements/requirements.txt b/requirements/requirements.txt
index 44669be1..19218fd9 100644
--- a/requirements/requirements.txt
+++ b/requirements/requirements.txt
@@ -19,3 +19,5 @@ pyroute2==0.4.10
elasticsearch==5.0.1
docker==2.0.2
kubernetes==6.0.0
+urllib3==1.24
+more-itertools==5.0.0
diff --git a/test-scheduler/docker/clean.sh b/test-scheduler/docker/clean.sh
index cab7a1b0..bcb4d89f 100644
--- a/test-scheduler/docker/clean.sh
+++ b/test-scheduler/docker/clean.sh
@@ -7,6 +7,8 @@
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
+basepath=$(cd `dirname $0`; pwd)
+
sudo docker rm -f t-scheduler-server \
t-scheduler-ui \
conductor_conductor-server_1 \
@@ -29,4 +31,6 @@ sudo docker rmi x-lab/test-scheduler:server \
nginx:latest \
java:latest \
+sudo rm -rf ${basepath}/plugin/tmp_files/
+
echo "--- Clean Finished ---"