From 7ead36a749c7542bb2b5489dded7612bb7cd0182 Mon Sep 17 00:00:00 2001 From: Venkata Krishna Rohit Sakala Date: Tue, 15 Oct 2024 14:48:00 -0700 Subject: [PATCH] Increase the default UI plugin file size limit to 30 MB --- pkg/settings/setting.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/settings/setting.go b/pkg/settings/setting.go index 64cee37179f..6efd2bdb47b 100644 --- a/pkg/settings/setting.go +++ b/pkg/settings/setting.go @@ -20,7 +20,7 @@ import ( const ( RancherVersionDev = "2.9.99" - DefaultMaxUIPluginFileSizeInBytes = 20 * 1024 * 1024 // 20MB + DefaultMaxUIPluginFileSizeInBytes = 30 * 1024 * 1024 // 30MB AgentTLSModeStrict = "strict" AgentTLSModeSystemStore = "system-store" )