测试:ansible 2.2.0.0,2.2.1.0& 2.1.4.0
我有一个库存脚本,在运行时返回此json(例如,为了最小化):
{
"componentA-service_ci": {
"hosts": [
"host1.example.com",
"host2.example.com"
],
"vars": {
"httpport": "8100",
"nginxpool": "componentA_pool"
}
},
"componentB-service_ci": {
"hosts": [
"host1.example.com",
"host3.example.com"
],
"vars": {
"httpport": "9999",
"nginxpool": "componentB_pool"
}
}
}
我写的剧本是用于部署应用程序的。清单中的变量对于组是唯一的,即每个服务都有自己的lb池和http端口。一台主机上也可以有多个应用程序。以下是剧本喜欢的内容:
---
- hosts: all
remote_user: deployment
become: true
become_method: sudo
become_user: root
gather_facts: yes
serial: 1
roles:
- app-deploy
角色中的任务只是打印出变量nginxpool和httpport。
我像这样运行剧本:
ansible-playbook deploy.yml -i inventory.py --limit componentA-service_ci
预期结果:
TASK [app-deploy : debug] ******************************************************
ok: [host1.example.com] => {
"msg": "pool componentA_pool port 8100"
}
TASK [app-deploy : debug] ******************************************************
ok: [host2.example.com] => {
"msg": "pool componentA_pool port 8100"
}
实际结果:
TASK [app-deploy : debug] ******************************************************
ok: [host1.example.com] => {
"msg": "pool componentB_pool port 9999"
}
TASK [app-deploy : debug] ******************************************************
ok: [host2.example.com] => {
"msg": "pool componentA_pool port 8100"
}
--limit
的工作原理是ansible部署在为componentA-service_ci列出的主机上,但是对于host1.example.com我从componentB-service_ci vars获得了nginxpool和httpport的值。我读了documentation但是不明白这是怎么发生的?这是一个错误还是我不知道ansible如何在这里工作?
答案 0 :(得分:0)
我认为重点是,ansible首先构建完整的广告资源,然后搜索符合您限制的游戏。
由于主机(host1.example.com
)属于指定同一变量的两个组,因此在设置清单时信息会混淆。 httpport
host1.example.com
变量的内容可以来自componentA
- 组或componentB
- 组。
构建清单后,ansible会尝试将播放限制为包含指定限制组
的主机的播放重命名变量,使变量名称唯一,然后在play中使用特定组中的特定变量名称:
{
"componentA-service_ci": {
"hosts": [
"host1.example.com",
"host2.example.com"
],
"vars": {
"componentA_httpport": "8100",
"componentA_nginxpool": "componentA_pool"
}
},
"componentB-service_ci": {
"hosts": [
"host1.example.com",
"host3.example.com"
],
"vars": {
"componentB_httpport": "9999",
"componentB_nginxpool": "componentB_pool"
}
}
}
现在主持人host1.example.com
有四个变量componentA_httpport
,componentA_nginxpool
和componentB_httpport
,componentB_nginxpool
。