我有这个 jinja2 模板:
# {{ ansible_managed }}
{% for vhost in nginx_vhosts %}
{%- if vhost.name == item.name -%}
# redirect www to non-www
server {
listen {{ nginx_port }};
listen [::]:{{ nginx_port }};
port_in_redirect off;
server_name www.{{ vhost.name }};
return 301 http://{{ vhost.name }}$request_uri;
}
{%- endif -%}
{%- endfor -%}
一个带有 yaml 文件vhosts.ym l 的 ansible 角色,其中包含如下定义:
nginx_vhosts:
- name: "test1.com"
repo: "git1"
branch: master
state: present
- name: "test2.com"
repo: "git2"
branch: master
state: present
...
- name: "test101.com"
repo: "git101"
branch: master
state: present
playbook.yml中的一个任务:
- name: "Generate nginx vhost configuration file"
template:
src: templates/nginx-vhost-template.j2
dest: "{{ nginx_vhosts_dir }}/{{ item.name }}.conf"
owner: "{{ nginx_user }}"
group: "{{ nginx_group }}"
mode: 0640
with_items:
- "{{ nginx_vhosts }}"
when:
- item.state == 'present'
notify:
- nginx-restart
我跑了一个像这样的任务:
ansible-playbook -l web1 playbook.yml --tags=nginx-vhost-config
这工作正常,它将从模板在远程服务器上创建一个 nginx vhost 配置文件,如 domain1.com.conf 等,用于所有找到的定义。
假设在 vhosts.yml 文件中我有 test1.com 到 test100.com,我将添加假设 test101.com 并且我想严格为该 test101.com 而不是所有以前的主机运行任务。所以我尝试了这样的事情:
ansible-playbook -l web1 playbook.yml --tags=nginx-vhost-config -e "{ 'nginx_vhosts': { 'name': 'test101.com', 'state': 'present', 'repo': 'git101', 'branch': 'master' }}"
这样做的问题是在尝试替换 jinja2 模板中的值时会导致错误。
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: ansible.errors.AnsibleUndefinedVariable: 'ansible.parsing.yaml.objects.AnsibleUnicode object' has no attribute 'name'
我也尝试过使用循环而不是with_items但没有运气。
我知道在使用额外变量时,提供的内容是 JSON 格式,但我无法找到另一种方法将 vhosts.yml 中的内容作为单个条目的额外变量传递。有什么办法可以使它起作用吗?
也许有更好的方法吗?
您正在传递一个对象/字典,但您的代码需要一个列表。您需要在传入时将其包装在列表中,或者在使用时考虑不同的可能结构。
nginx_vhosts
您应该首先在模板中直接使用当前循环项来减少引用的位置数量:然后你可以稍微修改你传入的结构:
或者稍微修改你的循环: