From 602db729bf4391f23356428ac8ad0e7f88e91045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfonso=20Mart=C3=ADnez?= Date: Tue, 28 Jan 2025 15:01:30 +0100 Subject: [PATCH] console: add proxy declaration for S3 service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alfonso Martínez --- console/console.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/console/console.go b/console/console.go index c1090e53..b9d118cb 100644 --- a/console/console.go +++ b/console/console.go @@ -106,6 +106,18 @@ func GetConsolePluginProxy(serviceNamespace string) []consolev1.ConsolePluginPro }, Authorization: consolev1.None, }, + { + Alias: "s3", + Endpoint: consolev1.ConsolePluginProxyEndpoint{ + Type: consolev1.ProxyTypeService, + Service: &consolev1.ConsolePluginProxyServiceConfig{ + Name: "s3", + Namespace: serviceNamespace, + Port: 443, + }, + }, + Authorization: consolev1.None, + }, } }