一、简介
通常一个任务会做很多事情,如创建大量的用户,安装很多包,或重复的轮询特定的步骤,直到某种结果条件为止,Ansible为我们提供了此支持。下面是关于循环的一些语句。
with_items #标准循环
with_nested #嵌套循环
with_dict #字典循环(Looping over hashed)
with_file #循环文件
with_fileglob #通配符循环文件
with_together #循环映射
with_subelements #子元素循环
with_sequence #生成一系列的数字
with_random_choice #任意选择
#with_first_found #选择第一个找到的,不会用
with_lines #循环程序执行的输出信息with_items:`command_result`.`stdout_lines`
with_flattened #循环列表中的列表的item
二、实例
--- - hosts: local #with_item 和 with_nested 用法 vars: Sta: false User: [ "Aheahe","yunzhonghe" ] tasks: - name: Standard Loops debug: msg="{{ item.name }},{{ item.fun }}" with_items: #生成标准循环 - { name: Loops, fun: xx } - { name: Conditional, fun: yy } when: Sta - name: Nested Loops debug: msg= "name={{ item[0] }},priv={{ item[1] }}" with_nested: #嵌套循环 - "{{ User }}" #这里的User 可以直接使用列表。 - [ "Student","Engineer","Friends" ]
--- - hosts: local #with_dict 用法 # vars_files: # hash.yml vars: users: alice: name: Alice Appleworth telephone: 123-456-7890 bob: name: Bob Bananarama telephone: 987-654-3210 tasks: - name: Print phone records debug: msg="User item.key is item.value.name item.value.telephone " with_dict: users #循环列表可以查看输出信息。以获取结果
--- - hosts: local #with_file 与 with_fileglob 用法。 vars: test_file: false tasks: - name: test file shell: echo {{ item }} with_file: #循环文件的内容 - test #test文件里面为任意内容。 - test1 when: test_file - name: Test file Glob shell: echo {{ item }} with_fileglob: #循环文件的通配符。 - /home/aheahe/playbook/*
--- - hosts: local #with_together用法 vars: alpha: [ 'a', 'b', 'c', 'd' ] numbers: [ 1, 2, 3, 4 ] test: [ 'A', 'B', 'C', 'D' ] tasks: - debug: msg="{{ item.0 }} and {{ item.1 }} and {{ item.2 }}" with_together: #循环映射信息 - "`alpha`" - "`numbers`" - "`test`"
--- - hosts: local #with_subelement用法 vars: 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" tasks: - name: Test1 shell: echo "name={{ item.name }}" with_items: "`users`" - name: Test2 shell: echo "User={{ item.0.name }},key={{ item.1 }}" with_subelements: #循环子元素。 - users - authorized
--- - hosts: local tasks: - name: Learn loop sequence debug: msg={{ item }} with_sequence: start=0 end=6 stride=2
--- - hosts: local # with_random_choice 用法 tasks: - name: Learn Random debug: msg={{ item }} with_random_choice: - "go through the door" - "drink from the goblet" - "press the red button" - "do nothing"
--- - hosts: local #with_lines 用法 tasks: - name: test result shell: echo {{ item }} with_lines: /bin/df -Th - name: flattened loop demo #with_flatted用法 yum: name={{ item }} state=installed with_flattened: - "`packages_base`" - "`packages_apps`"
---- # file: roles/foo/vars/main.yml packages_base: - [ 'foo-package', 'bar-package' ] packages_apps: - [ ['one-package', 'two-package' ]] - [ ['red-package'], ['blue-package']]
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦