以下の例では、
db.x86_64.alpine.updateがtrueのときにDEBUG 2をスキップする理由は、
「when:db.x86_64.alpine.update | bool is 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
Q:
db.x86_64.alpine.updateがtrueのときにメッセージを表示する方法
答え1
ブール値を明示的にテストする必要はありません。条件の値を使用します。
- debug:
msg: "MESSAGE"
when: db.x86_64.alpine['update']
メッセージが印刷されます
msg: MESSAGE
問題は属性です修正するPython辞書メソッドと競合します。バラより参照キー:値辞書変数。
- 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
- セントースストリーム8
- pipからAnsibleをインストールする