Rally version in group_vars

Right now we pin the rally version in the playbook. This patch removes
the pinning from the Playbook, so we can simply update group_vars to
change the Rally version

Change-Id: I30abccfbe85e4b4b5767efd32ffcc2d8662b35e3
This commit is contained in:
Joe Talerico 2016-08-16 09:43:22 -04:00
parent 8944207bd9
commit e7f531c649
2 changed files with 4 additions and 1 deletions

View File

@ -25,6 +25,9 @@ browbeat_venv: /home/stack/browbeat-venv
# The default Rally venv # The default Rally venv
rally_venv: /home/stack/rally-venv rally_venv: /home/stack/rally-venv
# Rally version to install
rally_version: 0.5.0
# The default Shaker venv # The default Shaker venv
shaker_venv: /home/stack/shaker-venv shaker_venv: /home/stack/shaker-venv

View File

@ -114,7 +114,7 @@
virtualenv={{ perfkit_venv }} virtualenv={{ perfkit_venv }}
- name: Install rally into rally-venv - name: Install rally into rally-venv
pip: name=rally version=0.5.0 virtualenv={{ rally_venv }} pip: name=rally version={{ rally_version }} virtualenv={{ rally_venv }}
- name: Setup rally database - name: Setup rally database
shell: . {{ rally_venv }}/bin/activate; rally-manage db recreate shell: . {{ rally_venv }}/bin/activate; rally-manage db recreate