Ansible:为什么在 var 为 true 时跳过任务

Ansible:为什么在 var 为 true 时跳过任务

从下面的示例来看
,为什么当 db.x86_64.alpine.update 为 true 时,DEBUG 2 被跳过
我也一直在尝试“当:db.x86_64.alpine.update|bool 为 true”时,但这也失败了

变量文件 db.yml

shell> cat db.yml
x86_64:
  alpine:
    update: true
    version_current: 3.14.0
    version_new: 3.15.

aarch64:
  alpine:
    update: true
    version_current: 3.14.0
    version_new: 3.15.0

剧本

---
- name: Playbook test
  hosts: localhost
  tasks:
  - ansible.builtin.include_vars:
      file: db.yml
      name: db

  - name: DEBUG 1
    debug:
      var: db.x86_64.alpine.update |type_debug

  - name: DEBUG 2
    debug:
      msg:
        - "MESSAGE"
    when: db.x86_64.alpine.update is true

运行时输出

PLAY [Playbook test] ******************************************************************************************************************************************************************************************************************************************************

TASK [Gathering Facts] ****************************************************************************************************************************************************************************************************************************************************
ok: [localhost]

TASK [ansible.builtin.include_vars] ***************************************************************************************************************************************************************************************************************************************
ok: [localhost]

TASK [debug] **************************************************************************************************************************************************************************************************************************************************************
ok: [localhost] => {
    "db.x86_64.alpine.update |type_debug": "builtin_function_or_method"
}

TASK [debug] **************************************************************************************************************************************************************************************************************************************************************
skipping: [localhost]

PLAY RECAP ****************************************************************************************************************************************************************************************************************************************************************
localhost                  : ok=3    changed=0    unreachable=0    failed=0    skipped=1    rescued=0    ignored=0

问题:
当db.x86_64.alpine.update为true时如何显示消息

答案1

没有必要显式测试布尔值。只需使用条件中的值

  - debug:
      msg: "MESSAGE"
    when: db.x86_64.alpine['update']

将打印该消息

  msg: MESSAGE

问题是属性更新与Python字典的方法冲突。看引用 key:value 字典变量

  - debug:
      var: db.x86_64.alpine['update']
  - debug:
      var: db.x86_64.alpine['update']|type_debug

给出

  db.x86_64.alpine['update']: true
  db.x86_64.alpine['update']|type_debug: bool

答案2

因为文件中的变量返回 DICT...

那么你可以这样验证:

when: db.x86_64.alpine['update'] is true

调试:
db.yml是<dict对象的内置方法更新...>

我的环境:

  • Python 3.6.8
  • Centos Stream 8
  • 从 pip 安装 Ansible

相关内容