Fix git URL to use opendev repo

Change-Id: I462ff90be8368e24f5f633e8306607402e8bbb60
This commit is contained in:
ahothan 2019-04-30 14:53:33 -07:00
parent 0c81e7c385
commit 0ec39ec1d0
8 changed files with 17 additions and 16 deletions

View File

@ -43,7 +43,7 @@ Build the image with below commands:
.. code-block:: bash
# Clone the kloudbuster repository if you have not done so
git clone https://github.com/openstack/kloudbuster.git
git clone https://opendev.org/x/kloudbuster.git
cd kloudbuster
# Install kloudbuster
pip install -e .

View File

@ -41,7 +41,7 @@ This also means that this cloud had 20,000 TCP active connections at all times
during the scale test.
.. image:: images/kb-http-thumbnail.png
:target: https://htmlpreview.github.io/?https://github.com/openstack/kloudbuster/blob/master/doc/source/gallery/http.html
:target: https://htmlpreview.github.io/?https://opendev.org/x/kloudbuster/src/branch/master/doc/source/gallery/http.html
Sample HTTP Monitoring Report
@ -89,7 +89,7 @@ for a total of 60,000 random read operations. The latency line tells us that
99.9% of these 60,000 read operations are completed within 1.576 msec.
.. image:: images/kb-storage-thumbnail.png
:target: https://htmlpreview.github.io/?https://github.com/openstack/kloudbuster/blob/master/doc/source/gallery/storage.html
:target: https://htmlpreview.github.io/?https://opendev.org/x/kloudbuster/src/branch/master/doc/source/gallery/storage.html
The sequential write results are more challenging as they show that the VMs
cannot achieve their requested write bandwidth (60MB/s) and can only get 49MB/s

View File

@ -20,7 +20,7 @@ Quick installation on Ubuntu/Debian
$ # create a virtual environment
$ virtualenv ./vkb
$ source ./vkb/bin/activate
$ git clone https://github.com/openstack/kloudbuster.git
$ git clone https://opendev.org/x/kloudbuster.git
$ cd kloudbuster
$ pip install -e .
$ pip install -r requirements-dev.txt
@ -34,7 +34,7 @@ Quick installation on RHEL/Fedora/CentOS
$ # create a virtual environment
$ virtualenv ./vkb
$ source ./vkb/bin/activate
$ git clone https://github.com/openstack/kloudbuster.git
$ git clone https://opendev.org/x/kloudbuster.git
$ cd kloudbuster
$ pip install -e .
$ pip install -r requirements-dev.txt
@ -57,7 +57,7 @@ First, download XCode from App Store, then execute below commands:
$ # create a virtual environment
$ virtualenv ./vkb
$ source ./vkb/bin/activate
$ git clone https://github.com/openstack/kloudbuster.git
$ git clone https://opendev.org/x/kloudbuster.git
$ cd kloudbuster
$ pip install -e .
$ pip install -r requirements-dev.txt

View File

@ -174,9 +174,9 @@ maintainer of KloudBuster.
Links
-----
* Complete documentation: `<http://kloudbuster.readthedocs.org>`_
* `KloudBuster REST API documentation Preview <https://htmlpreview.github.io/?https://github.com/openstack/kloudbuster/blob/master/doc/source/_static/kloudbuster-swagger.html>`_
* Source: `<https://github.com/openstack/kloudbuster>`_
* Complete documentation: `<https://kloudbuster.readthedocs.io/>`_
* `KloudBuster REST API documentation Preview <https://htmlpreview.github.io/?https://opendev.org/x/kloudbuster/src/branch/master/doc/source/_static/kloudbuster-swagger.html>`_
* Source: `<https://opendev.org/x/kloudbuster>`_
* Supports/Bugs: `<http://launchpad.net/kloudbuster>`_
* Mailing List: kloudbuster-core@lists.launchpad.net

View File

@ -82,8 +82,8 @@ Once the server is started, you can use different HTTP methods
(GET/PUT/POST/DELETE) to interact with the KloudBuster REST interface using the
provided URL at port 8080.
* `KloudBuster REST API Documentation Preview <https://htmlpreview.github.io/?https://github.com/openstack/kloudbuster/blob/master/doc/source/_static/kloudbuster-swagger.html>`_
* `REST API Documentation (Swagger yaml) <https://github.com/openstack/kloudbuster/blob/master/kb_server/kloudbuster-swagger.yaml>`_
* `KloudBuster REST API Documentation Preview <https://htmlpreview.github.io/?https://opendev.org/x/kloudbuster/src/branch/master/doc/source/_static/kloudbuster-swagger.html>`_
* `REST API Documentation (Swagger yaml) <https://opendev.org/x/kloudbuster/src/branch/master/doc/source/_static/kloudbuster-swagger.html>`_
The following curl examples assume the server runs on localhost.

2
kb_dib/Vagrantfile vendored
View File

@ -15,7 +15,7 @@ apt-get -y install qemu-utils
git clone git://github.com/openstack/diskimage-builder.git
git clone git://github.com/openstack/dib-utils.git
# install kloudbuster
git clone git://github.com/openstack/kloudbuster.git
git clone https://opendev.org/x/kloudbuster.git
kb_root=kloudbuster
# Extract image version number '__version__ = 2.0' becomes '__version__=2_0'

View File

@ -63,7 +63,7 @@ chmod +x /etc/rc.local
# KloudBuster Proxy
# =================
cd /kb_test
git clone git://github.com/openstack/kloudbuster.git
git clone https://opendev.org/x/kloudbuster.git
cd kloudbuster
pip install -r requirements.txt

View File

@ -1,11 +1,12 @@
[metadata]
name = kloudbuster
summary = KloudBuster is an open source tool that allows anybody to load any Neutron OpenStack cloud at massive data plane scale swiftly and effortlessly.
description-file =
README.rst
long_description_content_type = text/x-rst
long_description = README.rst
author = KloudBuster team at OpenStack
author-email = kloudbuster-core@lists.launchpad.net
home-page = https://github.com/openstack/kloudbuster
home-page = https://opendev.org/x/kloudbuster
classifier =
Environment :: OpenStack
Intended Audience :: Developers