设置/约束
我想运行一个位于 /tmp/run_tests.yml 的 ansible 游戏,并且我想在 python 脚本中执行运行,而不是命令行(这些是对我正在处理的问题的一般限制)。我已经尝试了几种不同的方法,这些方法都感觉像是对 Runner 类进行逆向工程的猜测工作,但都没有成功。我希望找出这是否可能以及代码的外观。
如果我想运行一个命令,我可以简单地使用 Ansible API 的运行器:
works.py(一个简单的使用 Runner 和一个模块的例子)
ansible.runner.Runner(**{
"pattern": '*',
"module_name": 'ping',
"inventory": webInventory,
"remote_user": self.username,
"private_key_file": self.private_key
}).run()
doesnotwork.py (尝试使用 runner 来玩)
hosts = ["127.0.0.0.1"] #dummy ip address
webInventory = ansible.inventory.Inventory(hosts)
runner = ansible.runner.Runner(pattern="*", )
response = runner.run(**{
"pattern": '*',
"module_name": "/tmp/run_tests.yml",
"inventory": webInventory,
"remote_user": "ubuntu",
"private_key_file": "~/.ssh/id_rsa"
})
产生的错误
{'contacted': {}, 'dark': {'127.0.0.1': {'failed': True, 'msg': 'module is missing interpreter line'}}}
从源头来看,该错误表明缺少 shebang,并且由于我是 ansible 的新手,因此我推测传递 yml 文件不是 module_name 的合适文件。为了运行我的 python 游戏,runner 命令必须是什么样子?