From f4d6c8841e0cb7590d0bdd11bc01fdba76dd8f1f Mon Sep 17 00:00:00 2001 From: jt-dd Date: Wed, 9 Oct 2024 13:06:51 +0200 Subject: [PATCH] Fix dev system-tests --down command --- cmd/kubehound/dev.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubehound/dev.go b/cmd/kubehound/dev.go index e2cedcce1..c5c59d7e2 100644 --- a/cmd/kubehound/dev.go +++ b/cmd/kubehound/dev.go @@ -59,7 +59,7 @@ var ( ) func runEnv(ctx context.Context, composePaths []string) error { - if uiTesting || downTesting { + if uiTesting { profiles = append(profiles, backend.DevUIProfile) }