首页 > 解决方案 > Ansible 变量分配给主机

问题描述

在这里的第一篇文章,我遇到了一种情况,我正在尝试分配存储在角色中的变量,在我的情况下:/var/lib/awx/projects/test/playbooks/roles/<< my roles >>/vars/ main.yml 但我希望它们由主机分配,所以我尝试在我的主机文件中分配它们,如下所示:

[test] 10.102.32.42 id=1 station=red ... 但这不起作用,我的变量没有定义。

我尝试使用host_vars/ ansible-playbook test_role.yml -i host -f 5 -e guest_vars_file=host_vars/test但同样的事情,它不需要我的变量。

我的测试文件 id: 1 station: red

我尝试使用group_vars/ ansible-playbook test_role.yml -i host -f 5 -e guest_vars_file=group_vars/test我不知道这是否是这样做的好方法。

我尝试了一个简单的ansible-playbook test_role.yml -i host文件,但没有

我通过在我的主机中分配变量尝试使用 AWX,但没有奏效。

当我使用 -e 传递变量时,它正在工作,但我的变量必须由主机更改。

有什么办法吗?还是不可能?我正在使用ansible 2.4.3.0 我想知道当我启动任务时,ansible 是否用我的vars/main.yml 中我只放 的地方覆盖了我的变量 id: station:

编辑:所以解决方案是将正确的名称放入host_vars AND !不要将变量放在角色/my_role/vars/main.yml 中,因为它会覆盖你在host_vars中的变量。谢谢

标签: ansible

解决方案


确保 host_vars 与 playbook 相关,在本例中为 mytest.yml

user> find roles/mytest
roles/mytest
roles/mytest/tasks
roles/mytest/tasks/main.yml

user> cat roles/mytest/tasks/main.yml 
---

- name: test myvar
  shell: echo "{{ myvar }}" > /tmp/myvar

user> cat hosts2
[test]
10.102.32.42

user> cat host_vars/10.102.32.42 
myvar: "this is 10.102.32.42"

user> cat mytest.yml 
---
- hosts: test
  roles:
    - mytest


user> ansible-playbook --inventory-file=hosts2 mytest.yml 

PLAY [test] *******************************************************************************************************************

TASK [Gathering Facts] ********************************************************************************************************
ok: [10.0.0.4]

TASK [mytest : test myvar] ****************************************************************************************************
changed: [10.102.32.42]

PLAY RECAP ********************************************************************************************************************
10.102.32.42                   : ok=2    changed=1    unreachable=0    failed=0   

user> ssh 10.102.32.42 "cat /tmp/myvar"
this is 10.102.32.42

请注意,group_varshost_vars文件夹与某些角色文件夹无关。考虑到这些文件夹中设置的任何变量可能对多个角色是通用的,或者它们可能与特定主机相关,而不是特定角色。请参阅Ansible 最佳实践;:

production                # inventory file for production servers
staging                   # inventory file for staging environment

group_vars/
   group1                 # here we assign variables to particular groups
   group2                 # ""
host_vars/
   hostname1              # if systems need specific variables, put them here
   hostname2              # ""

library/                  # if any custom modules, put them here (optional)
module_utils/             # if any custom module_utils to support modules, put them here (optional)
filter_plugins/           # if any custom filter plugins, put them here (optional)

site.yml                  # master playbook
webservers.yml            # playbook for webserver tier
dbservers.yml             # playbook for dbserver tier

roles/
    common/               # this hierarchy represents a "role"
        tasks/            #
            main.yml      #  <-- tasks file can include smaller files if warranted
        handlers/         #
            main.yml      #  <-- handlers file
        templates/        #  <-- files for use with the template resource
            ntp.conf.j2   #  <------- templates end in .j2
        files/            #

推荐阅读