背景资料:
我需要在一组主机(web1)上动态设置变量,然后在另一组主机上检查相同的变量。一旦匹配,我就可以进行进一步的行动。
代码
我的主机文件如下所示:
[web1]
web1.ttv.mydomain.com
[web1:vars]
primary_count=0
[web2]
web2.ttv.mydomain.com
[web2:vars]
secondary_count=0
[web]
web1
web2
这是剧本:
- hosts: web1
tasks:
- name: query primary servers
shell: psql -U widget widget -c 'SELECT COUNT(*) FROM test' -t
register: result
- set_fact: primary_count={{result.stdout}}
- hosts: web
tasks:
- name: retrieve variable from previous play
shell: echo hello
- debug: var=primary_count
本剧本产生以下结果:
TASK [setup] *******************************************************************
ok: [web1.ttv.mydomain.com]
TASK [query primary servers] ****************************************************
changed: [web1.ttv.mydomain.com]
TASK [debug] *******************************************************************
ok: [web1.ttv.mydomain.com] => {
"primary_count": 0
}
TASK [set_fact] ****************************************************************
ok: [web1.ttv.mydomain.com]
PLAY ***************************************************************************
TASK [setup] *******************************************************************
ok: [web1.ttv.mydomain.com]
ok: [web2.ttv.mydomain.com]
TASK [retrieve variable from previous play] ************************************
changed: [web1.ttv.mydomain.com]
changed: [web2.ttv.mydomain.com]
TASK [debug] *******************************************************************
ok: [web2.ttv.mydomain.com] => {
"primary_count": "VARIABLE IS NOT DEFINED!"
}
ok: [web1.ttv.mydomain.com] => {
"primary_count": " 2"
}
问题
现在我需要一种方法在第二场比赛中做到以下几点:
问题:
如何使用匹配的web2主机名评估web1主机上的“primary_count”变量?将来我的hosts文件将如下所示:
[web1]
web1.ttv.mydomain.com
web1.ttx.mydomain.com
[web2]
web2.ttv.mydomain.com
web2.ttx.mydomain.com
[web]
web1
web2
所以我需要编写一些执行此操作的eval语句: (伪代码)
while looping through ***ALL*** web servers
if primary_count on web1.ttv.mydomain.com matches secondary_count on web2.ttx.mydomain.com then
restart service x on web2.ttx.mydomain.com
else
wait a few seconds and repeat
end
end loop
我认为解决方案在于我的主机/库存文件。不知怎的,我需要这个剧本在所有web1服务器和所有web2服务器上运行...但我还需要一种方法将web1.ttv与web2.ttv和web1.ttx关联,只需web2.ttx等等。
我一直在学习安信,所以如果这种做法完全错误,请告诉我!
感谢。
编辑1
在对group_vars进行一些研究时,看起来group_vars并没有真正帮助我,因为我仍然遇到同样的问题。在循环遍历所有Web服务器(播放2)时,我在web2服务器上的web1服务器上设置的变量在web2服务器中不可见。
编辑2:
- hosts: web1
tasks:
- name: query primary servers
shell: psql -U widget widget -c 'SELECT COUNT(*) FROM widget' -t
register: result
- local_action: shell echo {{ result.stdout }} > varacrossplay.txt
带有此错误的local_action行失败:
致命:[web1.ttv.mydomain.com - > localhost]:失败了! => {“已更改”:true,“cmd”:“echo 2> varacrossplay.txt”,“delta”:“0:00:00.001641”,“end”: “:”echo 2> varacrossplay.txt“,”_uses_shell“:true,”chdir“:null,”creates“:null,”executable“:null,”removed“:null,”warn“:true},”mod 1:无法创建varacrossplay.txt:权限被拒绝“,”stdout“:”“,”stdout_lines“:[],”警告“:[]}
答案 0 :(得分:2)
尝试使用此示例playbook:
[jenkins@batman ansible]$ cat testplaybook.yml
- hosts: web1
tasks:
- name: query primary servers
shell: echo "TEST"
register: result
- local_action: shell echo {{ result.stdout }} > varacrossplay.txt
- hosts: web
tasks:
- local_action: shell cat varacrossplay.txt
register: result
- set_fact: other_fact="{{ result.stdout }}"
- debug: var=other_fact
我的服务器一切正常xD
[jenkins@batman ansible]$ ansible-playbook -i inventory testplaybook.yml
PLAY ***************************************************************************
TASK [setup] *******************************************************************
ok: [10.0.0.100]
TASK [query primary servers] ***************************************************
changed: [10.0.0.100]
TASK [command] *****************************************************************
changed: [10.0.0.100 -> localhost]
PLAY ***************************************************************************
TASK [setup] *******************************************************************
ok: [10.0.0.2]
ok: [10.0.0.1]
TASK [command] *****************************************************************
changed: [10.0.0.1 -> localhost]
changed: [10.0.0.2 -> localhost]
TASK [set_fact] ****************************************************************
ok: [10.0.0.1]
ok: [10.0.0.2]
TASK [debug] *******************************************************************
ok: [10.0.0.2] => {
"other_fact": "TEST"
}
ok: [10.0.0.1] => {
"other_fact": "TEST"
}
PLAY RECAP *********************************************************************
10.0.0.100 : ok=3 changed=2 unreachable=0 failed=0
10.0.0.1 : ok=4 changed=1 unreachable=0 failed=0
10.0.0.2 : ok=4 changed=1 unreachable=0 failed=0