Browse Source

Merge pull request #11661 from vrutkovs/crictl-ignore-errors

test: ignore errors when collecting a list of containers
OpenShift Merge Robot 5 years ago
parent
commit
5694ad07a1
2 changed files with 3 additions and 2 deletions
  1. 1 1
      roles/openshift_node/tasks/install.yml
  2. 2 1
      test/aws/scaleup.yml

+ 1 - 1
roles/openshift_node/tasks/install.yml

@@ -28,5 +28,5 @@
 
 - name: Enable the CRI-O service
   systemd:
-    name: "cri-o"
+    name: "crio"
     enabled: yes

+ 2 - 1
test/aws/scaleup.yml

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