Add release note for python3 support

Change-Id: I17b63e05ed8dcbe06369e4f71bf256ba70118643
This commit is contained in:
Jonathan Rosser 2019-10-10 12:54:28 +01:00
parent 0aa400123a
commit e8749ec86e
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
---
features:
- |
Deployments will now default to using python3 when a python3 interpreter
is present in the operating system. Each openstack-ansible role has a new
variable for the form <role>_venv_python_executable which defaults to python2
but a global variable openstack_venv_python_executable in the openstack-ansible
group variables sets this to python3 on supporting operating systems. This
enables a deployer is to selectively use python2 or python3 on a per service
basis if required. The ansible-runtime venv is also created using python3 on
the deploy host if possible.
upgrade:
- |
New virtual environments will be created using python3, giving
a straightforward transition from python2 to python3 during the major upgrade.
The ansible-runtime virtual environment on the deployment host will also
be upgraded from python2 to python3 where the operating system allows.