Ansible如何循环执行一系列任务?

时间:2015-11-13 20:39:24

标签: ansible ansible-playbook

Ansible如何在一系列任务中播放loop?我希望实现一个执行任务序列的轮询循环,直到任务成功。当它失败时,异常处理程序将尝试修复该条件,然后循环将重复该任务序列。

考虑以下想象的例子:

- action:
    - block:
        - debug: msg='i execute normally'
        - command: /bin/foo
      rescue:
        - debug: msg='I caught an error'
        - command: /bin/fixfoo
      always:
        - debug: msg="this always executes"
  register: result
  until: result
  retries: 5
  delay: 10

3 个答案:

答案 0 :(得分:4)

在Ansible 1.x中,这根本无法完成。它不是那样设计的。

Ansible 2.0支持循环包含文件,因此您可以将所有任务放在一个文件中,然后执行以下操作:

- include: test.yml
  with_items:
    - 1
    - 2
    - 3

但是我不相信你提到的任何其他结构(registeruntilretriesdelay等)都可以使用。虽然其中一些理论上可以应用于包含文件中的所有任务,但registeruntil等其他任务明确地绑定到各个任务。让多个任务尝试注册相同的输出变量是没有意义的。

答案 1 :(得分:1)

从Ansible 2.5开始,建议使用loop而不是with_items。此外,由于您不希望子任务没有任何循环,因此可以使用比“ item”更具描述性的名称。这是一个在一个循环中使用一个循环的示例,该循环略有截断,但是如果您定义了适当的配置,它仍然可以工作:

# terminate-instances-main.yml:
---
- hosts: local
  connection: local
  vars:
    regions:
      - ap-southeast-1
      - us-west-1
  tasks:
    - include_tasks: "terminate-instance-tasks.yml"
      loop: "{{ regions }}"
      loop_control:
        loop_var: region

# terminate-instance-tasks.yml:
---
- name: Gather EC2 facts
  ec2_instance_facts:
    region: "{{ region }}"
    filters:
      "tag:temporary": "true"
    aws_access_key: "{{ aws_access_key }}"
    aws_secret_key: "{{ aws_secret_key }}"
  register: ec2

- name: Terminate Temp EC2 Instance(s)
  ec2:
    instance_ids: '{{ item.instance_id }}'
    state: absent
    region: "{{ region }}"
    aws_access_key: "{{ aws_access_key }}"
    aws_secret_key: "{{ aws_secret_key }}"
  loop: "{{ ec2.instances }}"

答案 2 :(得分:0)

我需要基于URL的JSON响应的类似内容。这是我的尝试: https://gist.github.com/ParagDoke/5ddfc3d5647ce9b0110d1b9790090092

想法将以递归方式包含另一个任务列表yaml文件。如果包含文件名为foobar.yml

- task1
- task2
- task3
- include_tasks: foobar.yml
  until: "some condition"