gpt4 book ai didi

Ansible 没有看到已安装的 Python 模块

转载 作者:行者123 更新时间:2023-12-04 18:56:21 25 4
gpt4 key购买 nike

我正在尝试创建一个 Ansible 剧本,它将设置一个本地 Postgres 数据库以用于某个应用程序的本地/开发测试。postgresql_db似乎是我需要的 Ansible 模块和 psycopg2是列为依赖项的 Python 模块。
所以在我安装 Ansible 的同一个 virtualenv 中,我还安装了 psycopg2(我在 Mac 上运行 pipenv )。
但是当我用这个命令运行我的剧本时:

ansible-playbook pg_local.yml --connection=local
我得到错误:

"msg": "the python psycopg2 module is required"


剧本很小:
---
- hosts: my_ws

tasks:
- name: create a db
postgresql_db:
name: mynewdb
/etc/ansible/hosts 也是如此:
[my_ws]
localhost
我怀疑实际上是本地的“远程”机器正在尝试 import psycopg2。 ,它在没有模块的 Python 环境中运行。是 --connection=local惹的祸?
我已经添加它来解决 ssh: connect to host localhost port 22: Connection refused错误,因为我打算只在本地运行它。我不认为这是错误的——但我确实想知道它是否会破坏 Ansible 的环境。

我在剧本中添加了一个“测试和报告”任务,没有检测到问题:
changed: [localhost] => {
"changed": true,
"cmd": [
"python",
"-c",
"import psycopg2; print(psycopg2.__version__)"
],
"delta": "0:00:00.087664",
"end": "2018-08-22 13:36:17.046624",
"invocation": {
"module_args": {
"_raw_params": "python -c 'import psycopg2; print(psycopg2.__version__)'",
"_uses_shell": false,
"argv": null,
"chdir": null,
"creates": null,
"executable": null,
"removes": null,
"stdin": null,
"warn": true
}
},
"rc": 0,
"start": "2018-08-22 13:36:16.958960",
"stderr": "/Users/lsh783/.local/share/virtualenvs/docker-ansible-setup--HsJmUMv/lib/python3.6/site-packages/psycopg2/__init__.py:144: UserWarning: The psycopg2 wheel package will be renamed from release 2.8; in order to keep installing from binary please use \"pip install psycopg2-binary\" instead. For details see: <http://initd.org/psycopg/docs/install.html#binary-install-from-pypi>.\n \"\"\")",
"stderr_lines": [
"/Users/lsh783/.local/share/virtualenvs/docker-ansible-setup--HsJmUMv/lib/python3.6/site-packages/psycopg2/__init__.py:144: UserWarning: The psycopg2 wheel package will be renamed from release 2.8; in order to keep installing from binary please use \"pip install psycopg2-binary\" instead. For details see: <http://initd.org/psycopg/docs/install.html#binary-install-from-pypi>.",
" \"\"\")"
],
"stdout": "2.7.5 (dt dec pq3 ext lo64)",
"stdout_lines": [
"2.7.5 (dt dec pq3 ext lo64)"
]
}

我确实在输出中看到了这条线 -vvv :
<localhost> EXEC /bin/sh -c '/usr/bin/python /Users/lsh783/.ansible/tmp/ansible-tmp-1534957231.272713-121756549613883/postgresql_db.py > && sleep 0'
令我困扰的是,它不是我所处的虚拟环境中的 Python。

最佳答案

这是由 well-known 引起的和 described behaviour of Ansible .

简而言之,如果您指定 localhost无论在您的库存中,Ansible 将默认使用 /usr/bin/python用于运行模块,无论 connection: local环境。

如果在用于执行 playbook 的 Python 环境中安装了额外的库,这反过来会导致问题,但对于 /usr/bin/python 则不会。 .

解决方法是指定ansible_python_interpreter对于localhost .在你的情况下:

[my_ws]
localhost ansible_python_interpreter={{ansible_playbook_python}}

由于上述原因,验证模块存在的测试应该是:
- command: "{{ ansible_python_interpreter | default('/usr/bin/python') }} -c 'import {{ module }}; print({{ module }}.__version__)'"
vars:
module: psycopg2
register: test
- debug:
var: test.stdout

关于Ansible 没有看到已安装的 Python 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51971865/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com