我尝试使用Python API来运行一些Playbooks,因为我想将它与Flash集成以启用基于Web的控件。这是我的剧本( crondis.yaml ):
- hosts: "{{app_name}}-server"
tasks:
- name: disable cron
cron:
name: "{{app_name|upper}}_MONITOR"
job: "/{{app_name}}/monitor.sh"
disabled: yes
从cml可以这样:
ansible-playbook --extra-vars="{'app_name': 'newapp'}" crondis.yaml
但是在Python API中,我没有看到任何将vars添加到游戏中的地方。我检查了 Variable_Manager , DataLoader 和 PlaybookExecutor ,但没有找到任何可以为游戏添加变量的功能。 如果您有任何想法,请为我点上一点光。
答案 0 :(得分:4)
您可以通过设置.extra_vars
属性来定义额外变量,请参阅ansible-playbook
cli code:
# create the variable manager, which will be shared throughout
# the code, ensuring a consistent view of global variables
variable_manager = VariableManager()
variable_manager.extra_vars = load_extra_vars(loader=loader, options=self.options)
答案 1 :(得分:3)
您可以在context.CLIARGS中指定其他变量。您可以使用@
指定文件。
context.CLIARGS = ImmutableDict(connection='local', module_path=['/to/mymodules'], forks=10, become=None,
become_method=None, become_user=None, check=False, diff=False,
extra_vars={'@/path/to/vars/file', 'key=value'})