Release 2.3.0

Change-Id: I8c23c3f9862577365de8a19c0f4c897624955567
This commit is contained in:
Andrey Kurilin 2023-07-27 16:46:27 +03:00
parent 8ba3955f5a
commit 712e2c8fa9
2 changed files with 8 additions and 7 deletions

View File

@ -17,8 +17,8 @@ Changelog
was missed or can be improved, feel free to change it! was missed or can be improved, feel free to change it!
[unreleased] [2.3.0] - 2023-07-27
------------ --------------------
Deprecated Deprecated
~~~~~~~~~~ ~~~~~~~~~~
@ -28,6 +28,7 @@ Changed
~~~~~~~ ~~~~~~~
* Bumped min required version of Rally to 3.4.0. * Bumped min required version of Rally to 3.4.0.
* Switch docker image to rally 3.4.0 base.
Removed Removed
~~~~~~~ ~~~~~~~

View File

@ -10,8 +10,8 @@ Rally-OpenStack is a package of Rally plugins for OpenStack platform.
First of all, you need to pull the container. We suggest to use the last First of all, you need to pull the container. We suggest to use the last
tagged version: tagged version:
# pull the 2.2.0 image (the latest release at the point of writing the note) # pull the 2.3.0 image (the latest release at the point of writing the note)
$ docker pull xrally/xrally-openstack:2.2.0 $ docker pull xrally/xrally-openstack:2.3.0
**WARNING: never attach folders and volumes to `/rally` inside the container. It can break everything.** **WARNING: never attach folders and volumes to `/rally` inside the container. It can break everything.**
@ -27,7 +27,7 @@ docker volumes or mount the directory.
* use docker volumes. It is the easiest way. You just need to do something like: * use docker volumes. It is the easiest way. You just need to do something like:
$ docker volume create --name rally_volume $ docker volume create --name rally_volume
$ docker run -v rally_volume:/home/rally/.rally xrally/xrally-openstack:2.2.0 env create --name "foo" $ docker run -v rally_volume:/home/rally/.rally xrally/xrally-openstack:2.3.0 env create --name "foo"
* mount outer directory inside the container * mount outer directory inside the container
@ -44,10 +44,10 @@ docker volumes or mount the directory.
$ sudo chown 65500 /var/lib/rally_container $ sudo chown 65500 /var/lib/rally_container
# As opposed to mounting docker image, you must initialize rally database* # As opposed to mounting docker image, you must initialize rally database*
$ docker run -v /var/lib/rally_container:/home/rally/.rally xrally/xrally-openstack:2.2.0 db create $ docker run -v /var/lib/rally_container:/home/rally/.rally xrally/xrally-openstack:2.3.0 db create
# And finally, you can start doing your things.* # And finally, you can start doing your things.*
$ docker run -v /var/lib/rally_container:/home/rally/.rally xrally/xrally-openstack:2.2.0 env create --name "foo" $ docker run -v /var/lib/rally_container:/home/rally/.rally xrally/xrally-openstack:2.3.0 env create --name "foo"
Have fun! Have fun!