ansible tests 详解与使用案例
说明:
1、 运维人员使用的登录账号;
2、 所有的业务都放在 /app/ 下「yun用户的家目录」,避免业务数据乱放;
3、 该用户也被 ansible 使用,因为几乎所有的生产环境都是禁止 root 远程登录的(因此该 yun 用户也进行了 sudo 提权)。
1 # 使用一个专门的用户,避免直接使用root用户2 # 添加用户、指定家目录并指定用户密码3 # sudo提权4 # 让其它普通用户可以进入该目录查看信息5 uradd -u 1050 -d /app yun && echo '123456' | /usr/bin/passwd --stdin yun6 echo "yun all=(all) nopasswd: all" >> /etc/sudoers7 chmod 755 /app/
之后文章都是如下主机配置清单
1 [yun@ansi-manager ansible_info]$ pwd 2 /app/ansible_info 3 [yun@ansi-manager ansible_info]$ cat hosts_key 4 # 方式1、主机 + 端口 + 密钥 5 [managervers] 6 172.16.1.180:22 7 8 [proxyrvers] 9 172.16.1.18[1:2]:2210 11 # 方式2:别名 + 主机 + 端口 + 密码12 [webrvers]13 web01 ansible_ssh_host=172.16.1.183 ansible_ssh_port=2214 web02 ansible_ssh_host=172.16.1.184 ansible_ssh_port=2215 web03 ansible_ssh_host=172.16.1.185 ansible_ssh_port=22
tests 在 jinja 中是一种评估模板表达式,并最终返回 true 或 fal。jinja 中就有自带的 tests 清单,具体地址如下:
h美队三ttp://docs.jinkan.org/docs/jinja2/templates.html#builtin-tests
tests 和 filters 的主要区别在于jinja tests 用于比较,而 filters 用于数据操作,两者在jinja中有不同的应用。
与所有模板一样,tests 总是在 ansible 控制机上执行,而不是在任务的目标机上,因为它们测验本地数据。
除了 jinja2 tests 之外,ansible还提供了一些 tests,用户也可以轻松创建自己的 tests。
若要将字符串与子字符串或正则表达式匹配,请使用「match」、「arch」或「regex」过滤。
match:必须有开头匹配
arch:子串匹配
regex:正则匹配
示例:
1 [yun@ansi-manager ansi_tests]$ pwd 2 /app/ansible_info/ansi_tests 3 [yun@ansi-manager ansi_tests]$ cat tests_str.yml 4 --- 5 6 - hosts: managervers 7 vars: 8 url: "http://example.com/urs/foo/resources/bar" 9 10 tasks:11 - debug:12 msg: "matched pattern 1-1"13 when: url is match("http://example.com/urs/.*/resources/.*") # true14 15 - debug:16 msg: "matched pattern 1-2"17 wh春季运动会加油词en: url is match("http://example.com") # true18 19 - debug:20 msg: "matched pattern 1-3"21 when: url is match(".*://example.com") # true22 23 - debug:24 msg: "matched pattern 1-4"25 when: url is match("example.com/urs/.*/resources/.*") # fal26 27 - debug:28 msg: "matched pattern 2-1"29 when: url is arch("/urs/.*/resources/.*") # true30 31 - debug:32 msg: "matched pattern 2-2"33 when: url is arch("/urs/") # true34 35 命相查询 - debug:36 msg: "matched pattern 2-3"37 when: url is arch("/ur/") # fal38 39 - debug:40 msg: "matched pattern自制按摩膏 3"41 when: url is regex("example.com/\w+/foo") # true42 43 [yun@ansi-manager ansi_tests]$ ansible-playbook -b -i ../hosts_key tests_str.yml # 注意查看执行
使用「version」,用于版本号比较。
「version」接受的运算符如下:
<, lt, <=, le, >, gt, >=, ge, ==, =, eq, !=, <>, ne
「version」也可以接受「strict」参数,这个参数默认值为「fal」,如果设置为「true」则ansible会进行更严格的版本检查:
{{ sample_version_var is version('1.0', operator='lt', strict=true) }}
示例:
1 # 判断 ansible_python_version 版本是否 大于等于 2.7.3 2 [yun@ansi-manager ansi_tests]$ pwd 3 /app/ansible_info/ansi_tests 4 [yun@ansi-manager ansi_tests]$ ll 5 total 8 6 drwxrwxr-x 2 yun yun 35 p 12 15:14 file 7 -rw-rw-r-- 1 yun yun 209 p 12 15:08 tests_version.yml 8 [yun@ansi-manager ansi_tests]$ cat file/tests_version.conf.j2 # 涉及文件 9 # jinja2 版本测验10 11 {% if ansible_python_version is version('2.7.3', '>=') %}12 result true. ansible_python_version = {{ ansible_python_version }}13 {% el %}14 result fal15 {% endif %}16 17 [yun@ansi-manager ansi_tests]$ cat tests_version.yml # 涉及的playbook文件18 ---19 # ansible tests version comparison20 21 - hosts: proxyrvers22 23 tasks:24 - name: "tests version comparison"25 template:26 src: ./file/tests_version.conf.j227 dest: /tmp/tests_version.conf28 29 [yun@ansi-manager ansi_tests]$ ansible-playbook -b -i ../hosts_key tests_version.yml # 执行
关键字「supert」和「subt」,用于测验一个列表是否包含或被包含于另一个列表
示例:
1 [yun@ansi-manager ansi_tests]$ pwd 2 /app/ansible_info/ansi_tests 3 [yun@ansi-manager ansi_tests]$ cat tests_t.yml 4 --- 5 # tests 子集和超集 6 - hosts: managervers 7 8 vars: 9 a: [1,2,3,4,5]10 b: [2,3]11 tasks:12 - debug:13 msg: "a includes b"14 when: a is supert(b)15 16 - debug:17 msg: "b is included in a"18 when: b is subt(a)19 20 [yun@ansi-manager ansi_tests]$ ansible-playbook -b -i ../hosts_key tests_t.yml # 注意查看执行
关键字「all」和「any」,用于检查列表里元素的真假,列表中所有为真或者任何一个为真。
all:一假则假
any:一真则真
1 [yun@ansi-manager ansi_tests]$ pwd 2 /app/ansible_info/ansi_tests 3 [yun@ansi-manager ansi_tests]$ cat tests_list.yml 4 --- 5 # tests 测验 all any 6 - hosts: managervers 7 8 vars: 9 mylist:10 - 111 - "{{ 3 == 3 }}"12 - true13 myotherlist:14 - fal15 - true16 17 tasks:18 - debug:19 msg: "all are true!"20 when: mylist is all21 22 - debug:23 msg: "at least one is true"24 when: myotherlist is any25 26 [yun@ansi-manager ansi_tests]$ ansible-playbook -b -i ../hosts_key tests_list.yml # 注意查看执行
用于测验目录、文件、软连接、是否已存在、是相对路径还是绝对路径等等。
1 [yun@ansi-manager ansi_tests]$ pwd 2 /app/ansible_info/ansi_tests 3 [yun@ansi-manager ansi_tests]$ cat tests_path.yml 4 --- 5 - hosts: managervers 6 7 vars: 8 # - mypath: /tmp/ 9 - mypath: /tmp/yum_hard.sh10 - path2: /tmp/11 # - path2: /tmp/yum_hard_2.sh12 13 tasks:14 - debug:15 msg: "path is a directory"16 when: mypath is directory17 18 - debug:19 msg: "path is a file"20 when: mypath is file21 22 - debug:23 msg: "path is a symlink"24 when: mypath is link25 26 - debug:27 msg: "path already exists"28 when: mypath is exists29 30 - debug:31 msg: "path is {{ (mypath is abs)|ternary('absolute','relative')}}"32 33 - debug:34 msg: "path is the same file as path2"35 when: mypath is same_file(path2)36 37 - debug:38 msg: "path is a mount"39 when: mypath is mount40 41 [yun@ansi-manager ansi_tests]$ ansible-playbook -b -i ../hosts_key tests_path.yml # 注意查看执行
对任务执行结果进行测验。
1 [yun@ansi-ma场地租赁nager ansi_tests]$ pwd 2 /app/ansible_info/ansi_tests 3 [yun@ansi-manager ansi_tests]$ cat tests_result.yml 4 --- 5 - hosts: 172.16.1.180 6 7 ## 对如下3种情况一次测验 8 tasks: 9 - shell: /usr/bin/foo10 #- shell: /usr/bin/true11 #- shell: /usr/bin/fal12 register: result13 ignore_errors: true14 15 - debug:16 msg: "{{ result }}"17 18 - debug:19 msg: "it failed"20 when: result is failed21 22 # in most cas you'll want a handler, but if you want to do something right now, this is nice23 - debug:24 msg: "it changed"25 when: result is changed26 27 - debug:28 msg: "it succeeded in ansible >= 2.1"29 when: result is succeeded30 31 - debug:32 msg: "it succeeded"33 when: result is success34 35 - debug:36 msg: "it was skipped"37 when: result is skipped38 39 [yun@ansi-manager ansi_tests]$ ansible-playbook -b -i ../hosts_key tests_result.yml # 注意查看执行
———end———
如果觉得不错就关注下呗 (-^o^-) !
本文发布于:2023-04-03 22:58:28,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/d2750988a17e247fa66c82065685c5c1.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:自动化运维工具Ansible之Tests测验详解.doc
本文 PDF 下载地址:自动化运维工具Ansible之Tests测验详解.pdf
留言与评论(共有 0 条评论) |