From 9beca25f0a4b05635c2eaddfaf6d8c06e037751d Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Thu, 7 May 2020 18:58:26 +0300 Subject: [PATCH] Propose Rally 3.1.0 Change-Id: Ie52450f1ea2f8518f4d9e910ec990752b38478f9 --- CHANGELOG.rst | 6 ++++-- DOCKER_README.md | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 07e4d17448..2df7339e6b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,8 +17,8 @@ Changelog .. Release notes for existing releases are MUTABLE! If there is something that was missed or can be improved, feel free to change it! -[unreleased] ------------- +[3.1.0] - 2020-05-08 +-------------------- Changed ~~~~~~~ @@ -26,6 +26,8 @@ Changed * Validator for scenario arguments do not initialize scenario class anymore for discovering argument spec of the *run* method. +* Docker image includes the latest setuptools + Fixed ~~~~~ diff --git a/DOCKER_README.md b/DOCKER_README.md index dd437c7c38..afcc7cac69 100644 --- a/DOCKER_README.md +++ b/DOCKER_README.md @@ -17,7 +17,7 @@ additional plugins: # for rally user is used. # # Tags of the image are the same as releases of xRally/Rally - FROM xrally/xrally:3.0.0 + FROM xrally/xrally:3.1.0 # "rally" user (which is selected by-default) is owner of "/rally" directory, # so there is no need to call chown or switch the user @@ -40,8 +40,8 @@ details) First of all, you need to pull the container. We suggest to use the last tagged version: - # pull the 3.0.0 image (the latest release at the point of writing the note) - $ docker pull xrally/xrally:3.0.0 + # pull the 3.1.0 image (the latest release at the point of writing the note) + $ docker pull xrally/xrally:3.1.0 **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: $ docker volume create --name rally_volume - $ docker run -v rally_volume:/home/rally/.rally xrally/xrally:3.0.0 env create --name "foo" + $ docker run -v rally_volume:/home/rally/.rally xrally/xrally:3.1.0 env create --name "foo" * mount outer directory inside the container