c8ece0c625
This patch adds the option to configure the python interpreter that is used when deploying machines using the ansible deploy interface. Also set the default interpreter for tinyipa image with ansible deploy interface to /usr/bin/python3 on devstack and marks ironic-standalone job as voting again. Change-Id: I8eb58fb00980c9e8946e3b3ef77611a9f5212668 Story: #2005159 Task: #29877
14 lines
675 B
YAML
14 lines
675 B
YAML
---
|
|
features:
|
|
- Adds option ``[ansible]default_python_interpreter`` to choose
|
|
the python interpreter that ansible uses on managed machines.
|
|
By default, ansible uses ``/usr/bin/python`` as interpreter, making the
|
|
assumption that that path is always present on remote managed systems.
|
|
This might not be always the case, for example in custom build
|
|
images or Python 3 native distributions.
|
|
With this option the operator has the ability to set the absolute
|
|
path of the python interpreter on the remote machines, for example
|
|
``/usr/bin/python3``.
|
|
The same interpreter will be used in all operations that use the
|
|
ansible deploy interface.
|