爲了節省一些打字,重複的任務能夠寫成以下:html
- name: add several users user: name: "{{ item }}" state: present groups: "wheel" with_items: - testuser1 - testuser2
若是您在變量文件或「vars」部分中定義了YAML列表,則還能夠執行如下操做:
with_items: "{{ somelist }}"
至關於
- name: add user testuser1 user: name: "testuser1" state: present groups: "wheel" - name: add user testuser2 user: name: "testuser2" state: present groups: "wheel"
yum和apt模塊使用with_item來執行較少的包管理器事務。
請注意,使用「with_items」迭代的項目類型沒必要是簡單的字符串列表。 若是你有一個哈希列表,你可使用如下的東西來引用子項:
- name: add several users user: name: "{{ item.name }}" state: present groups: "{{ item.groups }}" with_items: - { name: 'testuser1', groups: 'wheel' } - { name: 'testuser2', groups: 'root' }
還要注意,當與with_items (或任何其餘循環語句)組合時 ,對每一個項目單獨處理when語句。 請參閱When語句爲例。
循環其實是with_ + lookup()的組合,因此任何查找插件均可以用做循環的源,'items'是查找。python
- name: give users access to multiple databases mysql_user: name: "{{ item[0] }}" priv: "{{ item[1] }}.*:ALL" append_privs: yes password: "foo" with_nested: - [ 'alice', 'bob' ] - [ 'clientdb', 'employeedb', 'providerdb' ]
與上述'with_items'同樣,您可使用之前定義的變量:
- name: here, 'users' contains the above list of employees mysql_user: name: "{{ item[0] }}" priv: "{{ item[1] }}.*:ALL" append_privs: yes password: "foo" with_nested: - "{{ users }}" - [ 'clientdb', 'employeedb', 'providerdb' ]
1.5版新功能mysql
假設你有如下變量:git
---
users: alice: name: Alice Appleworth telephone: 123-456-7890 bob: name: Bob Bananarama telephone: 987-654-3210
而且您想打印每一個用戶的名字和電話號碼。 您可使用循環遍歷哈希的元素,以下所示:
with_dict
tasks: - name: Print phone records debug: msg: "User {{ item.key }} is {{ item.value.name }} ({{ item.value.telephone }})" with_dict: "{{ users }}"
with_file
遍歷文件列表的內容, 項目將按順序設置爲每一個文件的內容。 它能夠像這樣使用:sql
--- - hosts: all tasks: # emit a debug message containing the content of each file. - debug: msg: "{{ item }}" with_file: - first_example_file - second_example_file
假設包含文本「hello」,而包含文本「world」,這將致使:
first_example_filesecond_example_file
TASK [debug msg={{ item }}] ******************************************************
ok: [localhost] => (item=hello) => { "item": "hello", "msg": "hello" } ok: [localhost] => (item=world) => { "item": "world", "msg": "world" }
with_fileglob
匹配單個目錄中的全部文件,非遞歸地匹配模式。 它調用Python的glob庫 ,能夠這樣使用:shell
---
- hosts: all tasks: # first ensure our target directory exists - name: Ensure target directory exists file: dest: "/etc/fooapp" state: directory # copy each file over that matches the given pattern - name: Copy each file over that matches the given pattern copy: src: "{{ item }}" dest: "/etc/fooapp/" owner: "root" mode: 0600 with_fileglob: - "/playbooks/files/fooapp/*"
假設你有如下變量數據被加載到某處:數組
---
alpha: [ 'a', 'b', 'c', 'd' ] numbers: [ 1, 2, 3, 4 ]
你想要一套「(a,1)」和「(b,2)」等等。 使用'with_together'獲得這個:
tasks: - debug: msg: "{{ item.0 }} and {{ item.1 }}" with_together: - "{{ alpha }}" - "{{ numbers }}"
假設你想作一些像循環遍歷用戶列表,建立它們,並容許他們經過一組SSH密鑰登陸。數據結構
怎麼可能實現? 假設你有如下定義並經過「vars_files」或「group_vars / all」文件加載:app
---
users: - name: alice authorized: - /tmp/alice/onekey.pub - /tmp/alice/twokey.pub mysql: password: mysql-password hosts: - "%" - "127.0.0.1" - "::1" - "localhost" privs: - "*.*:SELECT" - "DB1.*:ALL" - name: bob authorized: - /tmp/bob/id_rsa.pub mysql: password: other-mysql-password hosts: - "db1" privs: - "*.*:SELECT" - "DB2.*:ALL"
可能會發生如此:
- name: Create User user: name: "{{ item.name }}" state: present generate_ssh_key: yes with_items: - "{{ users }}" - name: Set authorized ssh key authorized_key: user: "{{ item.0.name }}" key: "{{ lookup('file', item.1) }}" with_subelements: - "{{ users }}" - authorized
給出mysql主機和privs子項列表,還能夠遍歷一個嵌套子項中的列表:
- name: Setup MySQL users mysql_user: name: "{{ item.0.name }}" password: "{{ item.0.mysql.password }}" host: "{{ item.1 }}" priv: "{{ item.0.mysql.privs | join('/') }}" with_subelements: - "{{ users }}" - "{{ mysql.hosts }}"
或者,您能夠將第三個元素添加到子元素列表,該列表包含標誌的字典。 目前您能夠添加'skip_missing'標誌。 若是設置爲True,查找插件將跳過不包含給定子項的列表項。 沒有這個標誌,或者若是該標誌設置爲False,插件將產生一個錯誤,並抱怨丟失的子項。
authorized_key模式正是它最多出現的地方。dom
with_sequence
生成一個項目序列。 您能夠指定起始值,結束值,可選的「stride」值,該值指定增長序列的步數,以及可選的printf樣式格式字符串。
參數應指定爲key = value對字符串。
參數string的簡單快捷方式也被接受: [start-]end[/stride][:format]
。
數值能夠十進制,十六進制(0x3f8)或八進制(0600)指定。 不支持負數。 這樣作的工做以下:
---
- hosts: all tasks: # create groups - group: name: "evens" state: present - group: name: "odds" state: present # create some test users - user: name: "{{ item }}" state: present groups: "evens" with_sequence: start=0 end=32 format=testuser%02x # create a series of directories with even numbers for some reason - file: dest: "/var/stuff/{{ item }}" state: directory with_sequence: start=4 end=16 stride=2 # a simpler way to use the sequence plugin # create 4 groups - group: name: "group{{ item }}" state: present with_sequence: count=4
'random_choice'功能能夠隨機選擇一些東西。 雖然它不是一個負載平衡器(有模塊的那些),它能夠有點被用做一個窮人的負載平衡器在MacGyver像狀況:
- debug: msg: "{{ item }}" with_random_choice: - "go through the door" - "drink from the goblet" - "press the red button" - "do nothing"
所提供的字符串之一將隨機選擇。
在更基礎的層面上,它們能夠用來增長混亂和興奮,以達到另外可預測的自動化環境。
版本1.4中的新功能。
有時你想重試一個任務,直到知足必定的條件。 這裏有一個例子:
- shell: /usr/bin/foo register: result until: result.stdout.find("all systems go") != -1 retries: 5 delay: 10
上述示例遞歸運行shell模塊,直到模塊的結果在其stdout中具備「全部系統」,或者任務已經重試了5次,延遲了10秒。 「重試」的默認值爲3,「延遲」爲5。
任務返回最後一個任務運行返回的結果。 單獨重試的結果能夠經過-vv選項查看。 註冊的變量還將有一個新的密鑰「attempts」,它將具備任務的重試次數。
這不是一個循環,可是很接近。 若是要根據與給定條件匹配的第一個文件使用對文件的引用,而且某些文件名由變量名稱決定? 是的,你能夠這樣作:
- name: INTERFACES | Create Ansible header for /etc/network/interfaces template: src: "{{ item }}" dest: "/etc/foo.conf" with_first_found: - "{{ ansible_virtualization_type }}_foo.conf" - "default_foo.conf"
此工具還具備容許可配置搜索路徑的長格式版本。 這裏有一個例子:
- name: some configuration template template: src: "{{ item }}" dest: "/etc/file.cfg" mode: 0444 owner: "root" group: "root" with_first_found: - files: - "{{ inventory_hostname }}/etc/file.cfg" paths: - ../../../templates.overwrites - ../../../templates - files: - etc/file.cfg paths: - templates
有時你可能想執行一個程序,並根據該程序的輸出,逐行循環結果。 儘管應該記住,這能夠提供一個整潔的方式來實現,但這老是在控制機器上執行,而不是遠程機器:
- name: Example of looping over a command result shell: "/usr/bin/frobnicate {{ item }}" with_lines: - "/usr/bin/frobnications_per_host --param {{ inventory_hostname }}"
好的,那有點隨意 實際上,若是您正在作一些與庫存相關的內容,您可能只想編寫一個動態庫存源代碼(請參閱動態庫存 ),但這對於快速和髒的實現可能會偶爾有用。
若是您須要遠程執行命令,則不能使用上述方法。 這樣作:
- name: Example of looping over a REMOTE command result shell: "/usr/bin/something" register: command_result - name: Do something with each result shell: "/usr/bin/something_else --param {{ item }}" with_items: - "{{ command_result.stdout_lines }}"
1.3版新功能
若是你想循環一個數組,而且還能夠在數組中得到數組的數字索引,你也能夠這樣作。 這是不經常使用的:
- name: indexed loop demo debug: msg: "at array position {{ item.0 }} there is a value {{ item.1 }}" with_indexed_items: - "{{ some_list }}"
2.0版新功能
ini插件可使用regexp來檢索一組鍵。 所以,咱們能夠循環這個集合。 這是咱們將使用的ini文件:
[section1] value1=section1/value1 value2=section1/value2 [section2] value1=section2/value1 value2=section2/value2
如下是使用的示例:
with_ini
- debug: msg: "{{ item }}" with_ini: - value[1-2] - section: section1 - file: "lookup.ini" - re: true
這裏是返回的值:
{
"changed": false, "msg": "All items completed", "results": [ { "invocation": { "module_args": "msg=\"section1/value1\"", "module_name": "debug" }, "item": "section1/value1", "msg": "section1/value1", "verbose_always": true }, { "invocation": { "module_args": "msg=\"section1/value2\"", "module_name": "debug" }, "item": "section1/value2", "msg": "section1/value2", "verbose_always": true } ] }
在極少數狀況下,您可能有幾個列表列表,您只須要迭代全部列表中的每一個項目。 假設一個真正瘋狂的假設數據結構:
----
# file: roles/foo/vars/main.yml packages_base: - [ 'foo-package', 'bar-package' ] packages_apps: - [ ['one-package', 'two-package' ]] - [ ['red-package'], ['blue-package']]
您能夠看到這些列表中的軟件包的格式是完整的。 咱們如何在兩個列表中安裝全部的包:
- name: flattened loop demo yum: name: "{{ item }}" state: present with_flattened: - "{{ packages_base }}" - "{{ packages_apps }}"
在使用register
循環後,放置在變量中的數據結構將包含一個results
屬性,該屬性是模塊中全部響應的列表。
如下是使用with_items
register
的with_items
:
- shell: "echo {{ item }}" with_items: - "one" - "two" register: echo
這與使用沒有循環的時返回的數據結構不一樣:
register
{
"changed": true, "msg": "All items completed", "results": [ { "changed": true, "cmd": "echo \"one\" ", "delta": "0:00:00.003110", "end": "2013-12-19 12:00:05.187153", "invocation": { "module_args": "echo \"one\"", "module_name": "shell" }, "item": "one", "rc": 0, "start": "2013-12-19 12:00:05.184043", "stderr": "", "stdout": "one" }, { "changed": true, "cmd": "echo \"two\" ", "delta": "0:00:00.002920", "end": "2013-12-19 12:00:05.245502", "invocation": { "module_args": "echo \"two\"", "module_name": "shell" }, "item": "two", "rc": 0, "start": "2013-12-19 12:00:05.242582", "stderr": "", "stdout": "two" } ] }
對註冊變量進行後續循環以檢查結果可能以下所示:
- name: Fail if return code is not 0 fail: msg: "The command ({{ item.cmd }}) did not have a 0 return code" when: item.rc != 0 with_items: "{{ echo.results }}"
在迭代過程當中,當前項目的結果將被放在變量中:
- shell: echo "{{ item }}" with_items: - one - two register: echo changed_when: echo.stdout != "one"
若是您但願循環查看廣告資源,或只是其中的一部分,則有多種方法。 可使用常規的with_items
與play_hosts
或groups
變量,以下所示:
# show all the hosts in the inventory - debug: msg: "{{ item }}" with_items: - "{{ groups['all'] }}" # show all the hosts in the current play - debug: msg: "{{ item }}" with_items: - "{{ play_hosts }}"
還有一個特定的查找插件能夠這樣使用:inventory_hostnames
# show all the hosts in the inventory
- debug: msg: "{{ item }}" with_inventory_hostnames: - all # show all the hosts matching the pattern, ie all but the group www - debug: msg: "{{ item }}" with_inventory_hostnames: - all:!www
2.1版新功能
在2.0中,您再次可使用with_循環和任務包括(但不包括playbook)。 這增長了在一次鏡像中循環該任務集的能力。 默認狀況下能夠設置每一個循環的循環變量項 ,這會致使這些嵌套循環從「外部」循環覆蓋項的值。 從Ansible 2.1開始, loop_control選項可用於指定要用於循環的變量的名稱:
# main.yml
- include: inner.yml with_items: - 1 - 2 - 3 loop_control: loop_var: outer_item # inner.yml - debug: msg: "outer item={{ outer_item }} inner item={{ item }}" with_items: - a - b - c
新版本2.2。
當使用複雜的數據結構來循環顯示可能會有點太忙,這就是C(label)指令來幫助的:
- name: create servers digital_ocean: name: "{{ item.name }}" state: present with_items: - name: server1 disks: 3gb ram: 15Gb network: nic01: 100Gb nic02: 10Gb ... loop_control: label: "{{item.name}}"
如今,它將只顯示「label」字段而不是每一個「item」的整個結構,它默認爲「{{item}}」'以照常顯示。
新版本2.2。
循環控制的另外一個選項是C(暫停),它容許您控制任務循環中項目執行之間的時間(以秒爲單位):
# main.yml
- name: create servers, pause 3s before creating next digital_ocean: name: "{{ item }}" state: present with_items: - server1 - server2 loop_control: pause: 3
由於loop_control在Ansible 2.0中不可用,當使用帶循環的include時,應該使用set_fact來保存項的「outer」循環值:
# main.yml
- include: inner.yml with_items: - 1 - 2 - 3 # inner.yml - set_fact: outer_item: "{{ item }}" - debug: msg: "outer item={{ outer_item }} inner item={{ item }}" with_items: - a - b - c
雖然一般不須要,若是您但願編寫本身的方法來循環任意數據結構,則能夠閱讀開發插件以獲取一些啓動器信息。 以上每一個功能都實現爲可插入的插件,所以有不少實現可供參考。