ddfd6b6202
Kayobe uses a number of virtual environments on the remote hosts for python dependencies such as shade, python-openstackclient, docker, etc. By default these are stored in /opt/kayobe/venvs/. Typically we do not provide version restrictions when installing these packages, so over the course of time they may become stale and incompatible. This change installs the latest version of packages allowed by OpenStack upper constraints. It also adds a new variable, 'pip_upper_constraints_file', to set the upper constraints file. The existing variable 'kolla_upper_constraints_file' now defaults to the value of 'pip_upper_constraints_file'. Change-Id: I8d2956f95bbc44b5a9e88e7569372048a62f12f5 Story: 2005923 Task: 34193
19 lines
800 B
YAML
19 lines
800 B
YAML
---
|
|
features:
|
|
- |
|
|
Adds a new configuration variable, ``pip_upper_constraints_file``, which is
|
|
used to configure the file or URL containing the python upper version
|
|
contraints. Its default value is
|
|
``https://releases.openstack.org/constraints/upper/{{ openstack_branch }}``.
|
|
fixes:
|
|
- |
|
|
Fixes an issue with virtual environments on remote hosts, which may over
|
|
the course of time become stale and incompatible with Kayobe or other
|
|
software. This was fixed by installing the latest version of packages
|
|
allowed by OpenStack upper constraints. See `story 2005923
|
|
<https://storyboard.openstack.org/#!/story/2005923>`__ for details.
|
|
upgrade:
|
|
- |
|
|
The default value of ``kolla_upper_constraints_file`` has been changed to
|
|
``{{ pip_upper_constraints_file }}``.
|