Ansible:ipaddr 过滤器需要在 ansible 控制器上安装 python 的 netaddr
Ansible: The ipaddr filter requires python's netaddr be installed on the ansible controller
Docker 容器 Alpine.3.13.1
apk add ansible
成功但是,执行需要 ipaddr 过滤器的剧本失败:
Ansible: The ipaddr filter requires python's netaddr be installed on the ansible controller
Ansible 版本:2.10.5
(如果需要可以做其他版本)
ipaddr 过滤器:Ansible docs
尝试通过 ansible-galaxy collection install ansible.netcommon
、pip install netaddr
安装它。仍然收到相同的错误。
您需要先安装它:
apk add py-netaddr
Docker 容器 Alpine.3.13.1
apk add ansible
成功但是,执行需要 ipaddr 过滤器的剧本失败:
Ansible: The ipaddr filter requires python's netaddr be installed on the ansible controller
Ansible 版本:2.10.5
(如果需要可以做其他版本)
ipaddr 过滤器:Ansible docs
尝试通过 ansible-galaxy collection install ansible.netcommon
、pip install netaddr
安装它。仍然收到相同的错误。
您需要先安装它:
apk add py-netaddr