使用动态广告资源时,ansible会返回不正确的广告资源

时间:2017-01-19 09:32:49

标签: ansible ansible-playbook ansible-2.x ansible-inventory

测试: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如何在这里工作?

1 个答案:

答案 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_httpportcomponentA_nginxpoolcomponentB_httpportcomponentB_nginxpool