Ansible: ターゲットノードでpython3を使用するansible.cfg設定は、ansible_python_interpreterでは無くinterpreter_python
Ansibleでターゲットノードにてpython3を使用する
ansible.cfgによるpython3指定でトラブルに遭遇したので備忘
環境
ansible 2.9.4, 2.9.5
変数で設定
変数で設定する場合には、ansible_python_interpreterを使用する。
- ansible-playbookコマンドに対する-eオプションによる設定例
$ ansible-playbook -e ansible_python_interpreter=/usr/bin/python3 site.yml
- inventoryにおける設定例
inventory
[all:vars]
ansible_python_interpreter=/usr/bin/python3
- play vars, task varsなどにおける設定例
playなど
vars:
ansible_python_interpreter: /usr/bin/python3
公式: Python 3 Support > Using Python 3 on the managed machines with commands and playbooks
ansible.cfgによる設定
ansible.cfgにおいて設定する場合、ansible_python_interpreterでは無く、interpreter_pythonを使用する事に注意。
ansible.cfg
[defaults]
interpreter_python=/usr/bin/python3
Author And Source
この問題について(Ansible: ターゲットノードでpython3を使用するansible.cfg設定は、ansible_python_interpreterでは無くinterpreter_python), 我々は、より多くの情報をここで見つけました https://qiita.com/hiroyuki_onodera/items/398c1331b157e5b4b588著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .