Remove rally_git_* overrides

Presently, rally in the integrated build is installed from PyPI, but without
constraints. This means the version installed may not be what is expected,
and the libraries that it pulls in are unconstrained and may cause failure
as has been seen recently with the new release of the cmd2 library which is
python3 only.

This commit removes the playbooks/defaults/repo_packages/openstack_testing.yml
file as it only contains the rally git overrides. This results in the rally
venv getting installed from PyPI but with upper-constraints applied.

Needed-By: https://review.openstack.org/570905
Change-Id: I79f37deb3615046e6c944008cc73d5cf2da5bb99
This commit is contained in:
Jesse Pretorius 2018-05-29 12:20:27 +01:00
parent ccf5601218
commit 26c2c6f695
4 changed files with 11 additions and 38 deletions

View File

@ -52,10 +52,6 @@ The update script is used as follows:
# the console code should only be updated when necessary for a security fix, or for the OSA master branch
./scripts/sources-branch-updater.sh -s playbooks/defaults/repo_packages/nova_consoles.yml -b master
# the testing repositories should not be updated for stable branches as the new tests
# or other changes introduced may not work for older branches
./scripts/sources-branch-updater.sh -s playbooks/defaults/repo_packages/openstack_testing.yml -b master
# commit the changes
new_version=$(awk '/^openstack_release/ {print $2}' inventory/group_vars/all/all.yml)
git add --all

View File

@ -1,32 +0,0 @@
---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
## NOTICE on items in this file:
## * If you use anything in the *._git_install_branch field that is not a TAG
## make sure to leave an in-line comment as to "why".
## For the sake of anyone else editing this file:
## * If you add clients to this file please do so in alphabetical order.
## * Every entry should be name spaced with the name of the client followed by an "_"
## * All items with this file should be separated by `name_` note that the name of the
## package should be one long name with no additional `_` separating it.
## Rally service
rally_git_repo: https://git.openstack.org/openstack/rally
rally_git_install_branch: 4c687b50d97841f131c9f375d708e3fb59e6915e # HEAD of "master" as of 31.03.2018
rally_git_project_group: utility_all
rally_git_install_fragments: "venvwithindex=True&ignorerequirements=True"

View File

@ -30,8 +30,6 @@
rsyslog_client_log_dir: "{{ tempest_log_dir }}"
rsyslog_client_config_name: "99-tempest-rsyslog-client.conf"
vars_files:
- defaults/repo_packages/openstack_testing.yml
environment: "{{ deployment_environment_variables | default({}) }}"
tags:
- tempest

View File

@ -0,0 +1,11 @@
---
features:
- When ``venvwithindex=True`` and ``ignorerequirements=True`` are both specified
in ``rally_git_install_fragments`` (as was previously the default), this
results in rally being installed from PyPI without any constraints being
applied. This results in inconsistent builds from day to day, and can cause
build failures for stable implementations due to new library releases.
Going forward, we remove the ``rally_git_*`` overrides in
``playbooks/defaults/repo_packages/openstack_testing.yml`` so that
the integrated build installs rally from PyPI, but with appropriate
constraints applied.