如何在命令行中传递变量到ansible playbook ? 下面的命令不起作用:

$ ansible-playbook -i '10.0.0.1,' yada-yada.yml --tags 'loaddata' django_fixtures="tile_colors"

django_fixtures是我的变量。


当前回答

阅读文档,我找到了在命令行上传递变量的部分,给出了这个例子:

ansible-playbook release.yml --extra-vars "version=1.23.45 other_variable=foo"

其他示例演示如何从JSON字符串(≥1.2)或文件(≥1.3)加载

其他回答

ansible-playbook release.yml --extra-vars "username=hello password=bye"

#you can now use the above command anywhere in the playbook as an example below:
tasks:
- name: Create a new user in Linux
shell: useradd -m -p {{username}} {{password}}"
 s3_sync:
      bucket: ansible-harshika
      file_root: "{{ pathoftsfiles  }}"
      validate_certs: false 
      mode: push
      key_prefix: "{{ folder }}"

这里的变量被命名为“pathoftsfiles”和“folder”。现在这个变量的值可以由下面的命令给出

sudo ansible-playbook multiadd.yml --extra-vars "pathoftsfiles=/opt/lampp/htdocs/video/uploads/tsfiles/$2 folder=nitesh"

注意:在shell命令中将值传递给变量时,不要使用倒逗号

Ansible-playbok -i <inventory> <playbook-name> -e "proc_name=sshd"

你可以在下面的剧本中使用上述命令。

---
- name: Service Status
gather_facts: False
tasks:
- name: Check Service Status (Linux)
shell: pgrep "{{ proc_name }}"
register: service_status
ignore_errors: yes
debug: var=service_status.rc`

你可以使用——extra-vars选项。查看文档

阅读文档,我找到了在命令行上传递变量的部分,给出了这个例子:

ansible-playbook release.yml --extra-vars "version=1.23.45 other_variable=foo"

其他示例演示如何从JSON字符串(≥1.2)或文件(≥1.3)加载