在Ansible Playbook中循环遍历Ansible inventory,并针对localhost运行,可以通过以下步骤实现:
my_playbook.yml
。localhost
,并将其设置为localhost
。- hosts: localhost
gather_facts: false
with_inventory_hostnames
循环遍历Ansible inventory中的主机。 tasks:
- name: Loop through inventory hosts
debug:
msg: "Running task for host: {{ item }}"
with_inventory_hostnames:
- localhost
ansible-playbook my_playbook.yml
这样,Ansible会循环遍历Ansible inventory中的主机,但只针对localhost
运行任务。你可以根据需要在循环中执行其他任务或操作。
请注意,这里的示例仅针对localhost
运行,如果你想针对其他主机运行任务,可以在with_inventory_hostnames
中指定相应的主机组。此外,Ansible还提供了许多其他功能和模块,可以根据具体需求进行扩展和定制。
领取专属 10元无门槛券
手把手带您无忧上云