Propose 4.1.0 release

Change-Id: I26eb0723f3d3442554bfe1c40181c06e6d1b8f70
This commit is contained in:
Andriy Kurilin 2024-04-28 20:20:28 -04:00 committed by Andrey Kurilin
parent 943f8a42b0
commit 094f0188fc
2 changed files with 7 additions and 7 deletions

View File

@ -17,8 +17,8 @@ Changelog
.. Release notes for existing releases are MUTABLE! If there is something that .. Release notes for existing releases are MUTABLE! If there is something that
was missed or can be improved, feel free to change it! was missed or can be improved, feel free to change it!
unreleased [4.1.0] - 2024-04-29
---------- --------------------
Changed Changed
~~~~~~~ ~~~~~~~

View File

@ -5,7 +5,7 @@ them in complex tests scenarios that allows to perform all kinds of testing!
# The purpose of xrally image or how to use it # The purpose of xrally image or how to use it
**xrally** image bases on the official python3.9-slim docker image. **xrally** image bases on the official python3.11-slim docker image.
It provides raw xrally framework with only in-tree plugins (no It provides raw xrally framework with only in-tree plugins (no
pre-installed plugins for Kubernetes, OpenStack, etc). pre-installed plugins for Kubernetes, OpenStack, etc).
@ -17,7 +17,7 @@ additional plugins:
# for rally user is used. # for rally user is used.
# #
# Tags of the image are the same as releases of xRally/Rally # Tags of the image are the same as releases of xRally/Rally
FROM xrally/xrally:4.0.0 FROM xrally/xrally:4.1.0
# "rally" user (which is selected by-default) is owner of "/rally" directory, # "rally" user (which is selected by-default) is owner of "/rally" directory,
# so there is no need to call chown or switch the user # so there is no need to call chown or switch the user
@ -40,8 +40,8 @@ details)
First, you need to pull the container. We suggest using the last tagged First, you need to pull the container. We suggest using the last tagged
version: version:
# pull the 4.0.0 image (the latest release at the point of writing the note) # pull the 4.1.0 image (the latest release at the point of writing the note)
$ docker pull xrally/xrally:4.0.0 $ docker pull xrally/xrally:4.1.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.**
@ -57,7 +57,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:4.0.0 env create --name "foo" $ docker run -v rally_volume:/home/rally/.rally xrally/xrally:4.1.0 env create --name "foo"
* mount outer directory inside the container * mount outer directory inside the container