写点什么

ansible 模块:delegate_to

作者:ghostwritten
  • 2022 年 5 月 12 日
  • 本文字数:1113 字

    阅读完需:约 4 分钟

ansible 模块:delegate_to

1. 场景介绍

在对一组服务器 server_group1 执行操作过程中,需要在另外一台机器 A 上执行一个操作,比如在 A 服务器上添加一条 hosts 记录,这些操作必须要在一个 playbook 联动完成。也就是是说 A 服务器这个操作与 server_group1 组上的服务器有依赖关系。Ansible 默认只会在定义好的一组服务器上执行相同的操作,这个特性对于执行批处理是非常有用的。但如果在这过程中需要同时对另外 1 台机器执行操作时,就需要用到 Ansible 的任务委派功能(delegate_to)。使用 delegate_to 关键字可以委派任务到指定的机器上运行。在 playbook 的操作如下:


- name: add host record  shell: 'echo "192.168.1.100 test.xyz.com" >> /etc/hosts'
- name: add host record to center server shell: 'echo "192.168.1.100 test.xyz.com " >> /etc/hosts' delegate_to: 192.168.1.1
复制代码


任务委派功能还可以用于以下场景:


  • 在部署之前将一个主机从一个负载均衡集群中删除;

  • 当你要对一个主机做改变之前去掉相应 dns 的记录;

  • 当在一个存储设备上创建 iscsi 卷的时候;

  • 当使用外的主机来检测网络出口是否正常的时候。

2. 委托(delegate)

通过"delegate_to", 用户可以把某一个任务放在委托的机器上执行.


- hosts: webservers  serial: 5
tasks:
- name: take out of load balancer pool command: /usr/bin/take_out_of_pool {{ inventory_hostname }} delegate_to: 127.0.0.1
复制代码


上面的 task 会在跑 ansible 的机器上执行, "delegate_to: 127.0.0.1" 可以用 local_action 来代替


  tasks:
- name: take out of load balancer pool local_action: command /usr/bin/take_out_of_pool {{ inventory_hostname }}
复制代码

3. 委托者的 facts

默认情况下, 委托任务的 facts 是inventory_hostname中主机的facts, 而不是被委托机器的 facts. 在 ansible 2.0 中, 设置delegate_facts为 true 可以让任务去收集被委托机器的 facts.


- hosts: app_servers  tasks:    - name: gather facts from db servers      setup:      delegate_to: "{{item}}"      delegate_facts: True      with_items: "{{groups['dbservers'}}"
复制代码


该例子会收集 dbservers 的 facts 并分配给这些机器, 而不会去收集 app_servers 的 facts

4. run_once

通过run_once: true来指定该 task 只能在某一台机器上执行一次. 可以和delegate_to 结合使用


- command: /opt/application/upgrade_db.py  run_once: true  delegate_to: web01.example.org
复制代码


指定在"web01.example.org"上执行这如果没有 delegate_to, 那么这个 task 会在第一台机器上执行


发布于: 刚刚阅读数: 2
用户头像

ghostwritten

关注

改变中国 2018.11.14 加入

虚心好学,勤奋努力,为中华之崛起而读书。

评论

发布
暂无评论
ansible 模块:delegate_to_ansible_ghostwritten_InfoQ写作社区