Hello, i know i may duplicate, but i need some clarification on using
netaddr filter with AWX 20.0.1
So, the problem is that i use the playbook which uses ipv4|ipv6 filters. Getting this error:
""The conditional check 'ipv4list.stdout_lines != (ipv4list.stdout_lines|ipv4)' failed. The error was: The ipv4 filter requires python's netaddr be installed on the ansible controller""
Tried to install it via pip install:
- name: Install python package
ansible.builtin.pip:
name: netaddr
delegate_to: 127.0.0.1
but it doesn't help - same message appears.
As i googled i need to create the new execution environment, but I dont understand why - why it's not enough to install the netaddr with pip in currently spawned container ?
Or maybe is there any easier way to workaround this issue ? Thank you