From c496c92f4d73c4a6af64c598ebfa0f48861b30cc Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Fri, 3 Mar 2023 11:51:35 +0100 Subject: [PATCH] verify: include "govet-levee" in normal "make verify" The corresponding feature was already moved to stable: https://github.com/kubernetes/enhancements/blob/master/keps/sig-security/1933-secret-logging-static-analysis/kep.yaml Including this check in the normal "make verify" and "pull-kubernetes-verify" is the first step. The next step is to remove the separate "pull-kubernetes-verify-govet-levee". --- hack/make-rules/verify.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/hack/make-rules/verify.sh b/hack/make-rules/verify.sh index 0ebd9a1708f..41ab4adcb7f 100755 --- a/hack/make-rules/verify.sh +++ b/hack/make-rules/verify.sh @@ -33,7 +33,6 @@ source "${KUBE_ROOT}/third_party/forked/shell2junit/sh2ju.sh" EXCLUDED_PATTERNS=( "verify-all.sh" # this script calls the make rule and would cause a loop "verify-*-dockerized.sh" # Don't run any scripts that intended to be run dockerized - "verify-govet-levee.sh" # Do not run levee analysis by default while KEP-1933 implementation is in alpha. "verify-licenses.sh" # runs in a separate job to monitor availability of the dependencies periodically )