Im registering with Ansible output from network checking in such way:
- name: Test kube networking
shell: kubectl exec -n iperf -it {{ item }} /test.sh
loop: "{{ pods.stdout_lines }}"
register: echo
- debug: msg={{ item.stdout_lines }}
loop: "{{ echo.results }}"
and now how to go trough all of entries? I want to have all "stdout_lines" from every result as item. Is such thing posible? Or maybe some "nested" loop one over results and second trough all stdout_lines from every result?