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:
Alex Barcelo 2019-05-03 21:21:42 +02:00 committed by Kubernetes Prow Robot
parent 1f1479c0a7
commit 00369303de

View file

@ -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 }}