Ignore Python warnings in kolla-toolbox
Ansible 2.2.0.0 used in Stein kolla-toolbox requires paramiko (no version constraints), which installs latest cryptography package. It results in Python deprecation warning about Python 2: /usr/lib64/python2.7/site-packages/cryptography/__init__.py:39: CryptographyDeprecationWarning: Python 2 is no longer supported by the Python core team. Support for it is now deprecated in cryptography, and will be removed in a future release. This warning breaks kolla_toolbox module. Closes-Bug: #1888657 Change-Id: I3e38946d9dabd5df8bf7c6202a8b739304fe4622
This commit is contained in:
parent
84d9d78e5f
commit
bbaa82619e
@ -26,6 +26,7 @@ common_services:
|
|||||||
environment:
|
environment:
|
||||||
ANSIBLE_NOCOLOR: "1"
|
ANSIBLE_NOCOLOR: "1"
|
||||||
ANSIBLE_LIBRARY: "/usr/share/ansible"
|
ANSIBLE_LIBRARY: "/usr/share/ansible"
|
||||||
|
PYTHONWARNINGS: "ignore::UserWarning"
|
||||||
privileged: True
|
privileged: True
|
||||||
volumes:
|
volumes:
|
||||||
- "{{ node_config_directory }}/kolla-toolbox/:{{ container_config_directory }}/:ro"
|
- "{{ node_config_directory }}/kolla-toolbox/:{{ container_config_directory }}/:ro"
|
||||||
|
6
releasenotes/notes/bug-1888657-44e2f6f3aedc20ba.yaml
Normal file
6
releasenotes/notes/bug-1888657-44e2f6f3aedc20ba.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
This patch fixes a bug, when kolla_toolbox Ansible module failed due to
|
||||||
|
Python deprecation warnings caused by paramiko/cryptography.
|
||||||
|
`LP#1888657 <https://launchpad.net/bugs/1888657>`__
|
Loading…
Reference in New Issue
Block a user