From b60f65c1e8df967562b13937315e1886620036e5 Mon Sep 17 00:00:00 2001
From: Kenichi Omichi <ken1ohmichi@gmail.com>
Date: Tue, 15 Nov 2022 17:46:41 +0900
Subject: [PATCH] Update sonobuoy version (#9485)

The latest version of sonobuoy is v0.56.11.
This updates the version to the latest.

As the file name, this makes it use certified-conformance mode
clearly for the latest version of sonobuoy.
---
 tests/testcases/100_check-k8s-conformance.yml | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/tests/testcases/100_check-k8s-conformance.yml b/tests/testcases/100_check-k8s-conformance.yml
index 3830f2ca2..7dc0682b0 100644
--- a/tests/testcases/100_check-k8s-conformance.yml
+++ b/tests/testcases/100_check-k8s-conformance.yml
@@ -1,12 +1,11 @@
 ---
 - hosts: kube_control_plane[0]
   vars:
-    sonobuoy_version: 0.20.0
+    sonobuoy_version: 0.56.11
     sonobuoy_arch: amd64
     sonobuoy_parallel: 30
     sonobuoy_path: /usr/local/bin/sonobuoy
-    sonobuoy_skip: 'Alpha|Disruptive|Feature|Flaky|Slow|Serial'
-    sonobuoy_mode: Quick
+    sonobuoy_mode: certified-conformance
 
   tasks:
   - name: Run sonobuoy
@@ -26,7 +25,7 @@
         copy: no
 
     - name: Run sonobuoy
-      command: "{{ sonobuoy_path }} run --mode {{ sonobuoy_mode }} --e2e-parallel {{ sonobuoy_parallel }} --e2e-skip {{ sonobuoy_skip }} --wait"
+      command: "{{ sonobuoy_path }} run --mode {{ sonobuoy_mode }} --e2e-parallel {{ sonobuoy_parallel }} --wait"
       when: sonobuoy_enabled | default(false)
 
     - name: Run sonobuoy retrieve
@@ -34,4 +33,4 @@
       register: sonobuoy_retrieve
 
     - name: Run inspect results
-      command: "{{ sonobuoy_path }} e2e {{ sonobuoy_retrieve.stdout }}"
+      command: "{{ sonobuoy_path }} results {{ sonobuoy_retrieve.stdout }} --plugin e2e --mode report"
-- 
GitLab