一、本地执行connection
在控制主机本地运行一个特定的任务
---
- hosts: web1
tasks:
- name: copy
copy:
content: hello
dest: /opt/test.txt
connection: local
- name:
stat:
path: /opt/test.txt
register: test_file
connection: local
任务描述:
1、在主控端生成/opt/test.txt文件
2、检查主控端是否存在/opt/test.txt文件
二、任务委托delegate_to
希望在主机组以外的服务器上运行任务
---
- hosts: web1
tasks:
- name: copy
copy:
content: hello
dest: /opt/test.txt
delegate_to: 192.168.58.12
# delegate_to: ansible3
# delegate_to: localhost
三、任务暂停wait_for
一些任务的运行需要等待一些状态的恢复,比如某一台主机或者应用刚刚重启,我们需要需要等待它上面的某个端口开启,此时就需要将正在运行的任务暂停,直到其状态满足要求。
Ansible提供了wait_for模块以实现任务暂停的需求
wait_for模块常用参数:
delay:等待一个端口或者文件或者连接到指定的状态时,默认超时时间为300秒,在这等待的300s的时间里,wait_for模块会一直轮询指定的对象是否到达指定的状态,delay即为多长时间轮询一次状态。
host:wait_for模块等待的主机的地址,默认为127.0.0.1
port:wait_for模块待待的主机的端口
path:文件路径,只有当这个文件存在时,下一任务才开始执行,即等待该文件创建完成
state:等待的状态,即等待的文件或端口或者连接状态达到指定的状态时,下一个任务开始执行。当等的对象为端口时,状态有started,stoped,即端口已经监听或者端口已经关闭;当等待的对象为文件时,状态有present或者started,absent,即文件已创建或者删除;当等待的对象为一个连接时,状态有drained,即连接已建立。默认为started
timeout:wait_for的等待的超时时间,默认为300秒
# 等待80端口已正常监听,才开始下一个任务,直到超时
- wait_for:
port: 80
state: started
# 等待8000端口正常监听,每隔10s检查一次,直至等待超时
- wait_for:
port: 8000
delay: 10
# 等待/opt/test.txt文件已创建
- wait_for:
path: /opt/test.txt
#等待/opt/test.txt文件已创建,而且该文件中需要包含hello字符串
- wait_for:
path: /opt/test.txt
search_regex: hello
# 等待/var/lock/file.lock被删除
- wait_for:
path: /var/lock/file.lock
state: absent
#等待指定的进程被销毁
- wait_for:
path: /proc/3966/status
state: absent
更多参考官方文档:https://docs.ansible.com/ansible/latest/collections/ansible/builtin/wait_for_module.html
四、只执行一次run_once
当主机组里面有多台机器的时候,希望task任务只在主机组的第一台机器上运行任务
# vim /etc/ansible/hosts
[web3]
ansible3
ansible2
# vim aa.yaml
---
- hosts: web3
tasks:
- name: copy
copy:
content: hello
dest: /opt/test.txt
run_once: true
# ansible-playbook aa.yaml
PLAY [web3] ******************************************************************************************
TASK [Gathering Facts] *******************************************************************************
ok: [ansible3]
ok: [ansible2]
TASK [copy] ******************************************************************************************
ok: [ansible3]
五、忽略错误ignore_errors
忽略错误继续往下执行任务
---
- hosts: web1
tasks:
- name: file
file:
path: /yyds/a.txt
state: touch
ignore_errors: yes
- name: copy
copy:
content: hello
dest: /opt/a.txt
# ansible-playbook aa.yaml
PLAY [web1] ******************************************************************************************
TASK [Gathering Facts] *******************************************************************************
ok: [ansible2]
TASK [file] ******************************************************************************************
fatal: [ansible2]: FAILED! => {"changed": false, "msg": "Error, could not touch target: [Errno 2] 没有那个文件或目录: '/yyds/a.txt'", "path": "/yyds/a.txt"}
...ignoring
TASK [copy] ******************************************************************************************
ok: [ansible2]
PLAY RECAP *******************************************************************************************
ansible2 : ok=3 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=1
六、存储任务执行返回的结果register
捕获任务执行结果以及任务执行过程中产生的输出和值,使用 register 关键字可以将任务的执行结果存储到一个变量中,您可以在 playbook 后续的任务中使用这个变量
# vim /tmp/a.yaml
---
- hosts: web1
tasks:
- name: stat test
stat: path=/tmp/a.sh
connection: local
register: aa_file
- name: get stat test
debug: msg={{ aa_file.stat.exists }}
将stat模块执行的检查结果返回值通过register关键字存储到自定义变量aa_file中,使用debug模块输出
七、不收集被控端信息gather_facts: no
使用copy模块指定多行内容,注意缩进
---
- hosts: web1
gather_facts: no
tasks:
- copy:
content: |
hello
ansible
dest: /opt/tt.txt