Skip to content

Commit

Permalink
Make file listing config explicit
Browse files Browse the repository at this point in the history
Add `GIT_SHOW_LISTING` and `BUNDLE_SHOW_LISTING` to the default configuration
to make them explicit.

Signed-off-by: Matthias Diester <[email protected]>
  • Loading branch information
HeavyWombat committed Dec 16, 2024
1 parent b8d1173 commit a3cced9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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),
Expand Down

0 comments on commit a3cced9

Please sign in to comment.