From aa491dff1556dbea5cce14fe7e2c19cc32d8bd04 Mon Sep 17 00:00:00 2001 From: Matthias Hinrichs Date: Tue, 5 May 2026 14:58:00 +0200 Subject: [PATCH] feat: expand CORS configuration in fleet.yaml to include methods, headers, and credentials --- 02-openwebui/fleet.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/02-openwebui/fleet.yaml b/02-openwebui/fleet.yaml index c468a2f..4785574 100644 --- a/02-openwebui/fleet.yaml +++ b/02-openwebui/fleet.yaml @@ -48,8 +48,16 @@ helm: namespace: kgateway-system filters: - cors: - - allowedOrigins: - - "*" + allowedOrigins: + - "*" + allowedMethods: + - "*" + allowedHeaders: + - "*" + exposeHeaders: + - "*" + maxAge: "*" + allowCredentials: true extraEnvVars: - name: WEBUI_URL