Skip to content
Snippets Groups Projects
Commit 00369303 authored by Alex Barcelo's avatar Alex Barcelo Committed by Kubernetes Prow Robot
Browse files

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.
parent 1f1479c0
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,7 @@ ...@@ -99,7 +99,7 @@
- name: Display kubeadm join stderr if any - name: Display kubeadm join stderr if any
when: kubeadm_join is failed when: kubeadm_join is failed
debug: debug:
message: | msg: |
Joined with warnings Joined with warnings
{{ kubeadm_join.stderr_lines }} {{ kubeadm_join.stderr_lines }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment