|
@@ -76,6 +76,7 @@
|
|
|
block:
|
|
|
- name: Collect a list of containers
|
|
|
command: crictl ps -a -q
|
|
|
+ ignore_errors: true
|
|
|
register: crictl_ps_output
|
|
|
- name: Collect container logs
|
|
|
command: "crictl logs {{ item }}"
|
|
@@ -83,7 +84,7 @@
|
|
|
with_items: "{{ crictl_ps_output.stdout_lines }}"
|
|
|
ignore_errors: true
|
|
|
- name: Get crio logs
|
|
|
- command: journalctl --no-pager -u cri-o
|
|
|
+ command: journalctl --no-pager -u crio
|
|
|
register: crio_logs
|
|
|
ignore_errors: true
|
|
|
- name: Get kubelet logs
|