From a3cced948cd1181c0b93dea8742ccbdcee95e50e Mon Sep 17 00:00:00 2001 From: Matthias Diester Date: Fri, 13 Dec 2024 16:19:04 +0100 Subject: [PATCH] Make file listing config explicit Add `GIT_SHOW_LISTING` and `BUNDLE_SHOW_LISTING` to the default configuration to make them explicit. Signed-off-by: Matthias Diester --- pkg/config/config.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkg/config/config.go b/pkg/config/config.go index d61715ddbe..72d653358c 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -175,6 +175,10 @@ func NewDefaultConfig() *Config { Name: "HOME", Value: "/shared-home", }, + { + Name: "GIT_SHOW_LISTING", + Value: "false", + }, }, SecurityContext: &corev1.SecurityContext{ AllowPrivilegeEscalation: ptr.To(false), @@ -199,6 +203,10 @@ func NewDefaultConfig() *Config { Name: "HOME", Value: "/shared-home", }, + { + Name: "BUNDLE_SHOW_LISTING", + Value: "false", + }, }, SecurityContext: &corev1.SecurityContext{ AllowPrivilegeEscalation: ptr.To(false),