ansible中的多个嵌套循环

时间:2016-03-24 17:36:43

标签: loops ansible

我正在尝试遍历列表,该列表存储在dict中,该列表是另一个列表的一部分。我的剧本看起来像这样:

---
- hosts: all 
  vars:
    copy_certs:
      - { domain: 'domainname', copy_to: ['/tmp/foo', '/tmp/bar'], restart: [["mailhost", "postfix"], ["mailhost", "dovecot"]] }
      - { domain: 'domainname2', copy_to: ['/tmp/foo2', '/tmp/bar2'], restart: [["mail.lxc", "postfix"]] }
  tasks:
[...]
    - name: Copy Private Key 
      register: copied_key
      copy: src=/etc/letsencrypt/live/{{ item.0.domain }}/privkey.pem dest="{{ item.1 }}/"
      with_subelements:
        - copy_certs
        - copy_to
    - name: Debug (here should be delegates to "item.restart.NUM.0" to restart "item.restart.NUM.1" with_subelements: ...)
      debug: var=item
      with_items: copied_key.results

现在我在迭代列表时堆栈,因为ansible似乎不支持真正的嵌套,而只是两个嵌套循环的几个预定义结构。

我需要类似的东西(不起作用):

with_subelements:
  - copied_key.results
  - item.domain.restart

或(子元素的语法错误):

with_subelements:
  - copied_key.results
  - item.domain
  - restart

我已经尝试使用冗余列表:

vars:
  restart_services:
    domainname: [["mailhost", "postfix"]]
tasks:
  - name: Debug
  debug: var=restart_services[item.item.0.domain]
  with_items: copied_key.results

如您所见,item.item已经开始变得丑陋。

需要像

这样的东西
  register: [to_restart for to_restart in item['restart']] as services_to_rstart
- debug: var=item # item.0 = hostname item.1 = servicename
  with_items: services_to_restart

或者如果它不需要是列表,甚至可以迭代item.hostname而不是元组(实际上是列表)。

使用嵌套指定循环而非使用预制过滤器(如with_subelements)会非常好。

1 个答案:

答案 0 :(得分:1)

您是否尝试过使用“with_nested”?您可以查看Ansible documentation

这可能有效:

- name: Copy Private Key
  register: copied_key
  copy: src=/etc/letsencrypt/live/{{ item[0].domain }}/privkey.pem dest="{{ item[1] }}/"
  with_nested:
    - copy_certs
    - copy_certs.copy_to