Fixing msg
parameter for debug
module (#4702)
According to [`debug` module documentation](https://docs.ansible.com/ansible/latest/modules/debug_module.html?highlight=msg), the correct parameter name is `msg`. With the previous `message` parameter name I was getting FAILED messages while ansible was trying to debug previous FAILED tasks.
This commit is contained in:
parent
1f1479c0a7
commit
00369303de
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@
|
|||
- name: Display kubeadm join stderr if any
|
||||
when: kubeadm_join is failed
|
||||
debug:
|
||||
message: |
|
||||
msg: |
|
||||
Joined with warnings
|
||||
{{ kubeadm_join.stderr_lines }}
|
||||
|
||||
|
|
Loading…
Reference in a new issue